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/librarian-puppet-go/default.nix

25 lines
617 B

{ lib, fetchFromGitHub, buildGoPackage }:
buildGoPackage rec {
pname = "librarian-puppet-go";
version = "0.3.9";
goPackagePath = "github.com/tmtk75/librarian-puppet-go";
src = fetchFromGitHub {
owner = "tmtk75";
repo = "librarian-puppet-go";
rev = "v${version}";
sha256 = "19x2hz3b8xkhy2nkyjg6s4qvs55mh84fvjwp157a86dmxwkdf45y";
};
goDeps = ./deps.nix;
meta = with lib; {
inherit (src.meta) homepage;
description = "librarian-puppet implementation in go";
license = licenses.mit;
maintainers = with maintainers; [ womfoo ];
platforms = [ "x86_64-linux" ];
};
}