nixpkgs/pkgs/development/tools/statik/default.nix

26 lines
672 B
Nix
Raw Normal View History

2019-03-23 09:16:14 +03:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
2019-08-14 00:52:01 +03:00
buildGoPackage {
2019-08-23 09:57:23 +03:00
pname = "statik";
version = "unstable-2019-07-31";
2019-03-23 09:16:14 +03:00
goPackagePath = "github.com/rakyll/statik";
goDeps = ./deps.nix;
src = fetchFromGitHub {
owner = "rakyll";
repo = "statik";
2019-08-23 09:57:23 +03:00
rev = "925a23bda946b50bb0804894f340c5da2b95603b";
sha256 = "15wwgrprfq36pa13b9anp7097q1fqcad28hirvivybmc011p0fri";
2019-03-23 09:16:14 +03:00
};
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;
};
}