nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 20.03 18 lines 394 B view raw
1{ buildGoPackage, fetchFromGitHub }: 2 3buildGoPackage { 4 name = "kexpand-unstable-2017-05-12"; 5 6 goPackagePath = "github.com/kopeio/kexpand"; 7 8 subPackages = [ "." ]; 9 10 src = fetchFromGitHub { 11 owner = "kopeio"; 12 repo = "kexpand"; 13 rev = "c508a43a4e84410dfd30827603e902148c5c1f3c"; 14 sha256 = "0946h74lsqnr1106j7i2w2a5jg2bbk831d7prlws4bb2kigfm38p"; 15 }; 16 17 goDeps = ./deps.nix; 18}