mprocs: 0.7.1 -> 0.7.2 (#375444)
[NixPkgs.git] / pkgs / by-name / fe / fehlstart / package.nix
blob7c289e51688e091a1a77ba0b0f2fea94acc7ff29
2   lib,
3   stdenv,
4   pkg-config,
5   gtk2,
6   keybinder,
7   fetchFromGitLab,
8 }:
10 stdenv.mkDerivation {
11   pname = "fehlstart";
12   version = "unstable-2016-05-23";
14   src = fetchFromGitLab {
15     owner = "fehlstart";
16     repo = "fehlstart";
17     rev = "9f4342d75ec5e2a46c13c99c34894bc275798441";
18     sha256 = "1rfzh7w6n2s9waprv7m1bhvqrk36a77ada7w655pqiwkhdj5q95i";
19   };
21   patches = [ ./use-nix-profiles.patch ];
22   nativeBuildInputs = [ pkg-config ];
23   buildInputs = [
24     gtk2
25     keybinder
26   ];
28   preConfigure = ''
29     export PREFIX=$out
30   '';
32   meta = with lib; {
33     description = "Small desktop application launcher with reasonable memory footprint";
34     homepage = "https://gitlab.com/fehlstart/fehlstart";
35     license = licenses.gpl3;
36     maintainers = [ maintainers.mounium ];
37     platforms = platforms.all;
38     mainProgram = "fehlstart";
39   };