mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
26 lines
596 B
Nix
26 lines
596 B
Nix
{ stdenv
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "bomutils";
|
|
version = "0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hogliux";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1i7nhbq1fcbrjwfg64znz8p4l7662f7qz2l6xcvwd5z93dnmgmdr";
|
|
};
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
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 ];
|
|
};
|
|
}
|