aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/tools/statik/default.nix
blob: f535fa055ed0c77075069ad089bc8b85ea3542bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage {
  pname = "statik";
  version = "unstable-2019-07-31";
  goPackagePath = "github.com/rakyll/statik";

  src = fetchFromGitHub {
    owner = "rakyll";
    repo = "statik";
    rev = "925a23bda946b50bb0804894f340c5da2b95603b";
    sha256 = "15wwgrprfq36pa13b9anp7097q1fqcad28hirvivybmc011p0fri";
  };

  meta = with stdenv.lib; {
    homepage = "https://github.com/rakyll/statik";
    description = "Embed files into a Go executable ";
    license = licenses.asl20;
    maintainers = with maintainers; [ chiiruno ];
  };
}