1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #34523 from womfoo/init/librarian-puppet-go-0.3.9

librarian-puppet-go: init at 0.3.9
This commit is contained in:
Jörg Thalheim 2018-02-10 11:32:40 +00:00 committed by GitHub
commit 777c8388e6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 39 additions and 0 deletions

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

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

View file

@ -7447,6 +7447,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 { };