forked from mirrors/nixpkgs
statik: init at 2018-11-28
This commit is contained in:
parent
b8a7e78c61
commit
1d4a9950af
25
pkgs/development/tools/statik/default.nix
Normal file
25
pkgs/development/tools/statik/default.nix
Normal 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
3
pkgs/development/tools/statik/deps.nix
generated
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# This file was generated by https://github.com/kamilchm/go2nix v1.3.0
|
||||||
|
[
|
||||||
|
]
|
|
@ -15361,6 +15361,8 @@ in
|
||||||
|
|
||||||
speedometer = callPackage ../os-specific/linux/speedometer { };
|
speedometer = callPackage ../os-specific/linux/speedometer { };
|
||||||
|
|
||||||
|
statik = callPackage ../development/tools/statik { };
|
||||||
|
|
||||||
statifier = callPackage ../os-specific/linux/statifier { };
|
statifier = callPackage ../os-specific/linux/statifier { };
|
||||||
|
|
||||||
sysdig = callPackage ../os-specific/linux/sysdig {
|
sysdig = callPackage ../os-specific/linux/sysdig {
|
||||||
|
|
Loading…
Reference in a new issue