summary refs log tree commit diff
path: root/pkgs/development/tools/go-bindata/default.nix
blob: cb9e51dfdfbc2cefdcf0a814e90555dbbf2d8f51 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# This file was generated by go2nix.
{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }:

with goPackages;

buildGoPackage rec {
  name = "go-bindata-${version}";
  version = "20151023-${stdenv.lib.strings.substring 0 7 rev}";
  rev = "a0ff2567cfb70903282db057e799fd826784d41d";
  
  goPackagePath = "github.com/jteeuwen/go-bindata";

  src = fetchgit {
    inherit rev;
    url = "https://github.com/jteeuwen/go-bindata";
    sha256 = "0d6zxv0hgh938rf59p1k5lj0ymrb8kcps2vfrb9kaarxsvg7y69v";
  };

  excludedPackages = "testdata";

  meta = with stdenv.lib; {
    homepage    = "https://github.com/jteeuwen/go-bindata";
    description = "A small utility which generates Go code from any file, useful for embedding binary data in a Go program";
    maintainers = with maintainers; [ cstrahan ];
    license     = licenses.cc0 ;
    platforms   = platforms.all;
  };
}