j4-dmenu-desktop: 2.16 -> 2.17

This commit is contained in:
Tadeo Kondrak 2019-07-04 02:22:18 -06:00
parent ed952d43b9
commit 8279e16395
No known key found for this signature in database
GPG Key ID: C4654C621CD5277C

View File

@ -1,14 +1,14 @@
{ stdenv, fetchFromGitHub, cmake, dmenu }: { stdenv, fetchFromGitHub, cmake, dmenu }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "j4-dmenu-desktop-${version}"; pname = "j4-dmenu-desktop";
version = "2.16"; version = "2.17";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "enkore"; owner = "enkore";
repo = "j4-dmenu-desktop"; repo = pname;
rev = "r${version}"; rev = "r${version}";
sha256 = "0714cri8bwpimmiirhzrkbri4xi24k0za6i1aw94d3fnblk2dg9f"; sha256 = "0v23fimkn83dcm5p53y2ymhklff3kwppxhf75sm8xmswrzkixpgc";
}; };
postPatch = '' postPatch = ''
@ -18,13 +18,16 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake ]; nativeBuildInputs = [ cmake ];
# tests are fetching an external git repository # tests are fetching an external git repository
cmakeFlags = [ "-DNO_TESTS:BOOL=ON" ]; cmakeFlags = [
"-DWITH_TESTS=OFF"
"-DWITH_GIT_CATCH=OFF"
];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "A wrapper for dmenu that recognize .desktop files"; description = "A wrapper for dmenu that recognize .desktop files";
homepage = "https://github.com/enkore/j4-dmenu-desktop"; homepage = "https://github.com/enkore/j4-dmenu-desktop";
license = licenses.gpl3; license = licenses.gpl3;
maintainers = with maintainers; [ ericsagnes ]; maintainers = with maintainers; [ ericsagnes ];
platforms = with platforms; unix; platforms = platforms.unix;
}; };
} }