2021-01-17 02:09:27 +00:00
|
|
|
{ lib, stdenv, pkg-config, gtk2, keybinder, fetchFromGitLab }:
|
2016-08-10 11:37:56 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "fehlstart-9f4342d7";
|
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "fehlstart";
|
|
|
|
repo = "fehlstart";
|
|
|
|
rev = "9f4342d75ec5e2a46c13c99c34894bc275798441";
|
|
|
|
sha256 = "1rfzh7w6n2s9waprv7m1bhvqrk36a77ada7w655pqiwkhdj5q95i";
|
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./use-nix-profiles.patch ];
|
2021-01-17 02:09:27 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-05 22:26:13 +01:00
|
|
|
buildInputs = [ gtk2 keybinder ];
|
2016-08-10 11:37:56 +01:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
export PREFIX=$out
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-08-10 11:37:56 +01:00
|
|
|
description = "Small desktop application launcher with reasonable memory footprint";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://gitlab.com/fehlstart/fehlstart";
|
2016-09-19 11:52:22 +01:00
|
|
|
license = licenses.gpl3;
|
2016-08-10 11:37:56 +01:00
|
|
|
maintainers = [ maintainers.mounium ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|