biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / fehlstart / default.nix
blob4d3903bbb6ec454a540334e16109e5597c03b7b1
1 { lib, stdenv, pkg-config, gtk2, keybinder, fetchFromGitLab }:
3 stdenv.mkDerivation {
4   pname = "fehlstart";
5   version = "unstable-2016-05-23";
7   src = fetchFromGitLab {
8     owner = "fehlstart";
9     repo = "fehlstart";
10     rev = "9f4342d75ec5e2a46c13c99c34894bc275798441";
11     sha256 = "1rfzh7w6n2s9waprv7m1bhvqrk36a77ada7w655pqiwkhdj5q95i";
12   };
14   patches = [ ./use-nix-profiles.patch ];
15   nativeBuildInputs = [ pkg-config ];
16   buildInputs = [ gtk2 keybinder ];
18   preConfigure = ''
19     export PREFIX=$out
20   '';
22   meta = with lib; {
23     description = "Small desktop application launcher with reasonable memory footprint";
24     homepage = "https://gitlab.com/fehlstart/fehlstart";
25     license = licenses.gpl3;
26     maintainers = [ maintainers.mounium ];
27     platforms = platforms.all;
28     mainProgram = "fehlstart";
29   };