nixpkgs/pkgs/development/tools/go-bindata-assetfs/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
559 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2016-08-12 11:27:50 +00:00
buildGoModule rec {
pname = "go-bindata-assetfs";
version = "unstable-2022-04-12";
2016-08-12 11:27:50 +00:00
src = fetchFromGitHub {
owner = "elazarl";
repo = "go-bindata-assetfs";
rev = "de3be3ce9537d87338bf26ac211d02d4fa568bb8";
hash = "sha256-yQgIaTl06nmIu8BfmQzrvEnlPQ2GQ/2nnvTmYXCL1oI=";
2016-08-12 11:27:50 +00:00
};
vendorHash = null;
ldflags = [ "-s" "-w" ];
meta = with lib; {
2016-08-12 11:27:50 +00:00
description = "Serve embedded files from jteeuwen/go-bindata";
license = licenses.bsd2;
maintainers = with maintainers; [ avnik ];
};
}