gdm: init at 1.4

This commit is contained in:
Jörg Thalheim 2017-01-12 23:04:00 +01:00
parent f0338024b9
commit 238a090b4f
No known key found for this signature in database
GPG key ID: CA4106B8D7CC79FA
3 changed files with 38 additions and 0 deletions

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 ];
};
}

View file

@ -0,0 +1,12 @@
# This file was generated by go2nix.
[
{
goPackagePath = "golang.org/x/tools";
fetch = {
type = "git";
url = "https://go.googlesource.com/tools";
rev = "0d047c8d5a8c3a1c89d9d78511f4ed7aef49ea0c";
sha256 = "0ahyxvqy25zpyppmrb7vsad332gmq2cdi7hb0si6ni0cmrlqcfwr";
};
}
]

View file

@ -876,6 +876,8 @@ in
gdrivefs = python27Packages.gdrivefs;
go-dependency-manager = callPackage ../development/tools/gdm { };
gencfsm = callPackage ../tools/security/gencfsm { };
genromfs = callPackage ../tools/filesystems/genromfs { };