commit
70591f871e
24
pkgs/development/tools/gdm/default.nix
Normal file
24
pkgs/development/tools/gdm/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
12
pkgs/development/tools/gdm/deps.nix
Normal file
12
pkgs/development/tools/gdm/deps.nix
Normal 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";
|
||||
};
|
||||
}
|
||||
]
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user