1{ stdenv, buildGoPackage, fetchFromGitHub }:
2
3buildGoPackage {
4 pname = "statik";
5 version = "unstable-2019-07-31";
6 goPackagePath = "github.com/rakyll/statik";
7 goDeps = ./deps.nix;
8
9 src = fetchFromGitHub {
10 owner = "rakyll";
11 repo = "statik";
12 rev = "925a23bda946b50bb0804894f340c5da2b95603b";
13 sha256 = "15wwgrprfq36pa13b9anp7097q1fqcad28hirvivybmc011p0fri";
14 };
15
16 meta = with stdenv.lib; {
17 homepage = "https://github.com/rakyll/statik";
18 description = "Embed files into a Go executable ";
19 license = licenses.asl20;
20 maintainers = with maintainers; [ chiiruno ];
21 };
22}