3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/archivers/bomutils/default.nix

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

29 lines
639 B
Nix
Raw Normal View History

{ lib, stdenv
2020-08-20 09:35:49 +01:00
, fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "bomutils";
version = "0.2";
src = fetchFromGitHub {
owner = "hogliux";
repo = pname;
rev = version;
sha256 = "1i7nhbq1fcbrjwfg64znz8p4l7662f7qz2l6xcvwd5z93dnmgmdr";
};
2021-05-11 15:53:42 +01:00
makeFlags = [
"PREFIX=$(out)"
"CXX=${stdenv.cc.targetPrefix}c++"
];
2020-08-20 09:35:49 +01:00
meta = with lib; {
2020-08-20 09:35:49 +01:00
homepage = "https://github.com/hogliux/bomutils";
description = "Open source tools to create bill-of-materials files used in macOS installers";
platforms = platforms.all;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ prusnak ];
};
}