dotfiles

My beautiful configs and dotfiles managed by Nix' home-manager
Log | Files | Refs | README | LICENSE

pretty-svstat.nix (373B)


      1 { stdenv
      2 , fetchgit
      3 }:
      4 
      5 stdenv.mkDerivation {
      6   name = "pretty-svstat";
      7   src = fetchgit {
      8     url = "https://git.friedelschoen.io/util/pretty-svstat";
      9     rev = "7de4a8b1d49a5c0a72e17794c536d0b3e003bdcf";
     10     hash = "sha256-IVxkvbbWSaP1b1HF3LZHyfUDzXAYy+Vfp7aZzNoVf2Q=";
     11   };
     12 
     13   buildPhase = ''
     14     make all
     15   '';
     16 
     17   installPhase = ''
     18     make PREFIX=$out install
     19   '';
     20 }