Merge pull request #87975 from flokli/pkger

pkger: init at 0.16.0
This commit is contained in:
adisbladis 2020-05-17 10:37:38 +02:00 committed by GitHub
commit bd039e7823
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ buildGoModule
, fetchFromGitHub
, lib
, stdenv
}:
buildGoModule rec {
pname = "pkger";
version = "0.16.0";
src = fetchFromGitHub {
owner = "markbates";
repo = "pkger";
rev = "v${version}";
sha256 = "0fpvrgww5h40l2js7raarx6gpysafvj75x26ljx4qz925x8nb6zn";
};
vendorSha256 = "1b9gpym6kb4hpdbrixphfh1qylmqr265jrmcd4vxb87ahvrsrvgp";
meta = with stdenv.lib; {
description = "Embed static files in Go binaries (replacement for gobuffalo/packr) ";
homepage = "https://github.com/markbates/pkger";
license = licenses.mit;
maintainers = with maintainers; [ flokli ];
};
}

View File

@ -302,6 +302,8 @@ in
pet = callPackage ../development/tools/pet { };
pkger = callPackage ../development/libraries/pkger { };
run = callPackage ../development/tools/run { };
mod = callPackage ../development/tools/mod { };