nixpkgs/pkgs/development/tools/go-bindata-assetfs/default.nix
2023-01-21 11:35:00 -05:00

24 lines
559 B
Nix

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