biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / bin2c / default.nix
blob2528b1ea09617835147e9769d7e88b7fbcf95bc5
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , util-linux
5 }:
7 stdenv.mkDerivation {
8   pname = "bin2c";
9   version = "unstable-2020-05-30";
11   src = fetchFromGitHub {
12     owner = "adobe";
13     repo = "bin2c";
14     rev = "4300880a350679a808dc05bdc2840368f5c24d9a";
15     sha256 = "sha256-PLo5kkN2k3KutVGumoXEB2x9MdxDUtpwAQZLwm4dDvw=";
16   };
18   makeFlags = [ "prefix=$(out)" ];
20   doCheck = !stdenv.isDarwin;
21   checkTarget = "test";
22   checkInputs = [ util-linux ]; # uuidgen
24   meta = with lib; {
25     description = "Embed binary & text files inside C binaries";
26     mainProgram = "bin2c";
27     homepage = "https://github.com/adobe/bin2c";
28     license = licenses.asl20;
29     maintainers = [ maintainers.shadowrz ];
30     platforms = platforms.all;
31   };