3
0
Fork 0
forked from mirrors/nixpkgs

statik: init at 2018-11-28

This commit is contained in:
Okina Matara 2019-03-23 01:16:14 -05:00
parent b8a7e78c61
commit 1d4a9950af
No known key found for this signature in database
GPG key ID: 977B7815794A1B0C
3 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "statik-unstable-${version}";
version = "2018-11-28";
goPackagePath = "github.com/rakyll/statik";
goDeps = ./deps.nix;
src = fetchFromGitHub {
owner = "rakyll";
repo = "statik";
rev = "79258177a57a85a8ab2eca7ce0936aad80307f4e";
sha256 = "14wqh38a7dhm2jgr1lsl2wdvjmkgdapzl2z4a1vl7ncv3x43gkg5";
};
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = "https://github.com/rakyll/statik";
description = "Embed files into a Go executable ";
license = licenses.asl20;
maintainers = with maintainers; [ chiiruno ];
platforms = platforms.all;
};
}

3
pkgs/development/tools/statik/deps.nix generated Normal file
View file

@ -0,0 +1,3 @@
# This file was generated by https://github.com/kamilchm/go2nix v1.3.0
[
]

View file

@ -15361,6 +15361,8 @@ in
speedometer = callPackage ../os-specific/linux/speedometer { };
statik = callPackage ../development/tools/statik { };
statifier = callPackage ../os-specific/linux/statifier { };
sysdig = callPackage ../os-specific/linux/sysdig {