mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
j4-dmenu-desktop: init at 2.14
This commit is contained in:
parent
ab428dce14
commit
2ab46a9dae
29
pkgs/applications/misc/j4-dmenu-desktop/default.nix
Normal file
29
pkgs/applications/misc/j4-dmenu-desktop/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ stdenv, fetchFromGitHub, cmake, dmenu }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "j4-dmenu-desktop-${version}";
|
||||
version = "2.14";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "enkore";
|
||||
repo = "j4-dmenu-desktop";
|
||||
rev = "r${version}";
|
||||
sha256 = "14srrkz4qx8qplgrrjv38ri4pnkxaxaq6jy89j13xhna492bq128";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
sed -e 's,dmenu -i,${dmenu}/bin/dmenu -i,g' -i ./src/Main.hh
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
# tests are fetching an external git repository
|
||||
cmakeFlags = [ "-DNO_TESTS:BOOL=ON" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A wrapper for dmenu that recognize .desktop files";
|
||||
homepage = "https://github.com/enkore/j4-dmenu-desktop";
|
||||
license = licenses.gpl3;
|
||||
maintainer = with maintainers; [ ericsagnes ];
|
||||
};
|
||||
}
|
@ -12827,6 +12827,8 @@ in
|
||||
|
||||
bip = callPackage ../applications/networking/irc/bip { };
|
||||
|
||||
j4-dmenu-desktop = callPackage ../applications/misc/j4-dmenu-desktop/default.nix { };
|
||||
|
||||
jabref = callPackage ../applications/office/jabref/default.nix { };
|
||||
|
||||
jack_capture = callPackage ../applications/audio/jack-capture { };
|
||||
|
Loading…
Reference in New Issue
Block a user