nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at netboot-syslinux-multiplatform 29 lines 793 B view raw
1{ lib, stdenv, pkg-config, gtk2, keybinder, fetchFromGitLab }: 2 3stdenv.mkDerivation { 4 pname = "fehlstart"; 5 version = "unstable-2016-05-23"; 6 7 src = fetchFromGitLab { 8 owner = "fehlstart"; 9 repo = "fehlstart"; 10 rev = "9f4342d75ec5e2a46c13c99c34894bc275798441"; 11 sha256 = "1rfzh7w6n2s9waprv7m1bhvqrk36a77ada7w655pqiwkhdj5q95i"; 12 }; 13 14 patches = [ ./use-nix-profiles.patch ]; 15 nativeBuildInputs = [ pkg-config ]; 16 buildInputs = [ gtk2 keybinder ]; 17 18 preConfigure = '' 19 export PREFIX=$out 20 ''; 21 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 }; 29}