gdm: init at 1.4

This commit is contained in:
Jörg Thalheim
2017-01-14 22:56:12 +01:00
parent f0338024b9
commit 238a090b4f
3 changed files with 38 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "gdm-${version}";
version = "1.4";
goPackagePath = "github.com/sparrc/gdm";
src = fetchFromGitHub {
url = "https://github.com/sparrc/gdm";
sha256 = "0kpqmbg144qcvd8k88j9yx9lrld85ray2viw161xajafk16plvld";
rev = version;
};
goDeps = ./deps.nix;
meta = with stdenv.lib; {
description = "Minimalist dependency manager for Go written in Go.";
homepage = https://github.com/sparrc/gdm;
license = licenses.unlicense;
platforms = platforms.all;
maintainers = [ maintainers.mic92 ];
};
}