pretty-svstat.nix (337B) download
1{ pkgs ? import <nixpkgs> { }, config ? { } }:
2
3with pkgs; stdenv.mkDerivation {
4 name = "pretty-svstat";
5 src = fetchGit {
6 url = "https://git.friedelschoen.io/pretty-svstat";
7 rev = "7de4a8b1d49a5c0a72e17794c536d0b3e003bdcf";
8 };
9
10 buildPhase = ''
11 make all
12 '';
13
14 installPhase = ''
15 make PREFIX=$out install
16 '';
17}