goklp: init at 1.6

This commit is contained in:
Samuel Leathers
2017-10-03 11:59:43 -04:00
parent 047c576353
commit cc96fb6810
3 changed files with 82 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "goklp-${version}";
version = "1.6";
goPackagePath = "github.com/AppliedTrust/goklp";
src = fetchFromGitHub {
owner = "AppliedTrust";
repo = "goklp";
rev = "v${version}";
sha256 = "054qmwfaih8qbvdyy4rqbb1ip3jpnm547n390hgab8yc3bdd840c";
};
goDeps = ./deps.nix;
meta = with stdenv.lib; {
description = "Golang OpenSSH Keys Ldap Provider for AuthorizedKeysCommand";
homepage = https://github.com/AppliedTrust/goklp;
maintainers = with maintainers; [ disassembler ];
license = licenses.bsd2;
};
}