My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/tools/gdm/default.nix

24 lines
552 B

{ lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "gdm";
version = "1.4";
goPackagePath = "github.com/sparrc/gdm";
src = fetchFromGitHub {
owner = "sparrc";
repo = "gdm";
rev = version;
sha256 = "0kpqmbg144qcvd8k88j9yx9lrld85ray2viw161xajafk16plvld";
};
goDeps = ./deps.nix;
meta = with lib; {
description = "Minimalist dependency manager for Go written in Go";
homepage = "https://github.com/sparrc/gdm";
license = licenses.unlicense;
maintainers = [ maintainers.mic92 ];
};
}