depot/pkgs/development/tools/go-bindata-assetfs/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

24 lines
599 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";
mainProgram = "go-bindata-assetfs";
license = licenses.bsd2;
maintainers = with maintainers; [ avnik ];
};
}