librarian-puppet-go: init at 0.3.9
This commit is contained in:
parent
65170e9404
commit
35b8a406bb
25
pkgs/development/tools/librarian-puppet-go/default.nix
Normal file
25
pkgs/development/tools/librarian-puppet-go/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ stdenv, lib, fetchFromGitHub, buildGoPackage }:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "librarian-puppet-go-${version}";
|
||||
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.unfree; # still unspecified https://github.com/tmtk75/librarian-puppet-go/issues/5
|
||||
maintainers = with maintainers; [ womfoo ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
}
|
12
pkgs/development/tools/librarian-puppet-go/deps.nix
Normal file
12
pkgs/development/tools/librarian-puppet-go/deps.nix
Normal file
@ -0,0 +1,12 @@
|
||||
# This file was generated by https://github.com/kamilchm/go2nix v1.2.1
|
||||
[
|
||||
{
|
||||
goPackagePath = "github.com/jawher/mow.cli";
|
||||
fetch = {
|
||||
type = "git";
|
||||
url = "https://github.com/jawher/mow.cli";
|
||||
rev = "3ff64ca21987cfa628bd8d1865162b7ccd6107d7";
|
||||
sha256 = "0vws79q4x3c9kjdsin3vw5200sinkxag3bfa0n9k69svsb222bij";
|
||||
};
|
||||
}
|
||||
]
|
@ -7414,6 +7414,8 @@ with pkgs;
|
||||
libcxx = llvmPackages.libcxx;
|
||||
libcxxabi = llvmPackages.libcxxabi;
|
||||
|
||||
librarian-puppet-go = callPackage ../development/tools/librarian-puppet-go { };
|
||||
|
||||
libstdcxx5 = callPackage ../development/libraries/libstdc++5 { };
|
||||
|
||||
libsigrok = callPackage ../development/tools/libsigrok { };
|
||||
|
Loading…
Reference in New Issue
Block a user