1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/servers/serf/default.nix

18 lines
471 B
Nix
Raw Normal View History

2016-06-06 01:28:52 +01:00
{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:
2016-06-04 12:54:28 +01:00
buildGoPackage rec {
name = "serf-${version}";
version = "20150515-${stdenv.lib.strings.substring 0 7 rev}";
rev = "668982d8f90f5eff4a766583c1286393c1d27f68";
goPackagePath = "github.com/hashicorp/serf";
src = fetchgit {
inherit rev;
url = "https://github.com/hashicorp/serf";
sha256 = "1h05h5xhaj27r1mh5zshnykax29lqjhfc0bx4v9swiwb873c24qk";
};
goDeps = ./deps.json;
}