depot/pkgs/development/tools/bin2c/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

32 lines
742 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, util-linux
}:
stdenv.mkDerivation {
pname = "bin2c";
version = "unstable-2020-05-30";
src = fetchFromGitHub {
owner = "adobe";
repo = "bin2c";
rev = "4300880a350679a808dc05bdc2840368f5c24d9a";
sha256 = "sha256-PLo5kkN2k3KutVGumoXEB2x9MdxDUtpwAQZLwm4dDvw=";
};
makeFlags = [ "prefix=$(out)" ];
doCheck = !stdenv.hostPlatform.isDarwin;
checkTarget = "test";
checkInputs = [ util-linux ]; # uuidgen
meta = with lib; {
description = "Embed binary & text files inside C binaries";
mainProgram = "bin2c";
homepage = "https://github.com/adobe/bin2c";
license = licenses.asl20;
maintainers = [ maintainers.shadowrz ];
platforms = platforms.all;
};
}