mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
20 lines
456 B
Nix
20 lines
456 B
Nix
{ stdenv, buildGoPackage, fetchgit }:
|
|
|
|
with builtins;
|
|
|
|
buildGoPackage rec {
|
|
pname = "gawp";
|
|
version = "20160121-${stdenv.lib.strings.substring 0 7 rev}";
|
|
rev = "5db2d8faa220e8d6eaf8677354bd197bf621ff7f";
|
|
|
|
goPackagePath = "github.com/martingallagher/gawp";
|
|
|
|
src = fetchgit {
|
|
inherit rev;
|
|
url = "https://github.com/martingallagher/gawp";
|
|
sha256 = "0bbmbb1xxdgvqvg1ssn9d4j213li7bbbx3y42iz4fs10xv7x4r0c";
|
|
};
|
|
|
|
goDeps = ./deps.nix;
|
|
}
|