commit
41c91c48ee
2 changed files with 62 additions and 0 deletions
60
pkgs/tools/X11/pmenu/default.nix
Normal file
60
pkgs/tools/X11/pmenu/default.nix
Normal file
|
@ -0,0 +1,60 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, writeText
|
||||
, fontconfig
|
||||
, imlib2
|
||||
, libX11
|
||||
, libXext
|
||||
, libXft
|
||||
, libXinerama
|
||||
, libXrender
|
||||
, conf ? null
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "pmenu";
|
||||
version = "3.0.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "phillbush";
|
||||
repo = "pmenu";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-xeOiJEOPz5QEMlWP6bWhTjmj4tfNqh3rsEVmnKvrKuM=";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
fontconfig
|
||||
imlib2
|
||||
libX11
|
||||
libXext
|
||||
libXft
|
||||
libXinerama
|
||||
libXrender
|
||||
];
|
||||
|
||||
postPatch = let
|
||||
configFile =
|
||||
if lib.isDerivation conf || builtins.isPath conf
|
||||
then conf else writeText "config.h" conf;
|
||||
in
|
||||
lib.optionalString (conf != null) "mv ${configFile} config.h";
|
||||
|
||||
makeFlags = [
|
||||
"INSTALL=install"
|
||||
"PREFIX=\${out}"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A pie-menu tool";
|
||||
longDescription = ''
|
||||
πmenu is a pie menu utility for X. πmenu receives a menu specification in
|
||||
stdin, shows a menu for the user to select one of the options, and outputs
|
||||
the option selected to stdout.
|
||||
'';
|
||||
homepage = "https://github.com/phillbush/pmenu";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ azahi ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
|
@ -9542,6 +9542,8 @@ with pkgs;
|
|||
|
||||
pm2 = nodePackages.pm2;
|
||||
|
||||
pmenu = callPackage ../tools/X11/pmenu { };
|
||||
|
||||
pngcheck = callPackage ../tools/graphics/pngcheck { };
|
||||
|
||||
pngcrush = callPackage ../tools/graphics/pngcrush { };
|
||||
|
|
Loading…
Reference in a new issue