stevee

My wayland statusbar
git clone git://gtms.dev/stevee
Log | Files | Refs | Submodules | README | LICENSE

package.nix (483B)


      1 { stdenv
      2 , callPackage
      3 , zig_0_13
      4 , pkg-config
      5 , wayland
      6 , wayland-protocols
      7 , wayland-scanner
      8 , fcft
      9 , libpulseaudio
     10 , pixman
     11 , systemdLibs
     12 }:
     13 stdenv.mkDerivation {
     14   pname = "levee";
     15   version = "0.1.4";
     16 
     17   src = ./..;
     18 
     19   nativeBuildInputs = [
     20     zig_0_13.hook
     21     pkg-config
     22 
     23     wayland
     24     wayland-protocols
     25     wayland-scanner
     26 
     27     fcft
     28     libpulseaudio
     29     pixman
     30     systemdLibs
     31   ];
     32 
     33   postPatch = ''
     34     ln -s ${callPackage ./deps.nix {}} $ZIG_GLOBAL_CACHE_DIR/p
     35   '';
     36 }