nixpkgs/pkgs/tools/archivers/bomutils/default.nix

29 lines
639 B
Nix
Raw Normal View History

{ lib, stdenv
2020-08-20 10:35:49 +02:00
, fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "bomutils";
version = "0.2";
src = fetchFromGitHub {
owner = "hogliux";
repo = pname;
rev = version;
sha256 = "1i7nhbq1fcbrjwfg64znz8p4l7662f7qz2l6xcvwd5z93dnmgmdr";
};
2021-05-11 16:53:42 +02:00
makeFlags = [
"PREFIX=$(out)"
"CXX=${stdenv.cc.targetPrefix}c++"
];
2020-08-20 10:35:49 +02:00
meta = with lib; {
2020-08-20 10:35:49 +02: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 ];
};
}