xdg_open_ng: 20220625 -> 20230518

This commit is contained in:
Emery Hemingway 2023-05-18 12:30:11 +01:00
parent d913e7b884
commit 956473d5ac
1 changed files with 6 additions and 4 deletions

View File

@ -1,8 +1,8 @@
{ lib, buildNimPackage, fetchFromGitea, makeDesktopItem, syndicate }:
{ lib, buildNimPackage, fetchFromGitea, makeDesktopItem, pkg-config, pcre, syndicate }:
buildNimPackage rec {
pname = "xdg_open_ng";
version = "20220625";
version = "20230518";
nimBinOnly = true;
src = fetchFromGitea {
@ -10,10 +10,12 @@ buildNimPackage rec {
owner = "ehmry";
repo = pname;
rev = version;
hash = "sha256-yOuR4KYAMxlRc4AIr3ud0HzidHDQPeIiN3dzlnphLug=";
hash = "sha256-xoUcX3Vwz0Gnishqpe2hWo9x7HiNwagMBLW9nk9ZVWY=";
};
propagatedBuildInputs = [ syndicate ];
nativeBuildInputs = [ pkg-config ];
propagatedBuildInputs = [ pcre syndicate ];
desktopItem = makeDesktopItem rec {
name = "xdg-open";