mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
21 lines
474 B
Nix
21 lines
474 B
Nix
{ stdenv, buildGoPackage, fetchgit }:
|
|
|
|
buildGoPackage rec {
|
|
pname = "govers";
|
|
version = "20160623-${stdenv.lib.strings.substring 0 7 rev}";
|
|
rev = "77fd787551fc5e7ae30696e009e334d52d2d3a43";
|
|
|
|
goPackagePath = "github.com/rogpeppe/govers";
|
|
|
|
src = fetchgit {
|
|
inherit rev;
|
|
url = "https://github.com/rogpeppe/govers";
|
|
sha256 = "12w83vyi8mgn48fwdm2js693qcydimxapg8rk0yf01w0ab03r5wn";
|
|
};
|
|
|
|
dontRenameImports = true;
|
|
|
|
doCheck = false; # fails, silently
|
|
|
|
}
|