2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2020-08-20 08:35:49 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "bomutils";
|
|
|
|
version = "0.2";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "hogliux";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
|
|
|
sha256 = "1i7nhbq1fcbrjwfg64znz8p4l7662f7qz2l6xcvwd5z93dnmgmdr";
|
|
|
|
};
|
|
|
|
|
2021-05-11 14:53:42 +00:00
|
|
|
makeFlags = [
|
|
|
|
"PREFIX=$(out)"
|
|
|
|
"CXX=${stdenv.cc.targetPrefix}c++"
|
|
|
|
];
|
2020-08-20 08:35:49 +00:00
|
|
|
|
2022-04-23 08:28:12 +00:00
|
|
|
# fix
|
|
|
|
# src/lsbom.cpp:70:10: error: reference to 'data' is ambiguous
|
|
|
|
# which refers to std::data from C++17
|
2023-02-19 19:23:32 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE = toString [ "-std=c++14" ];
|
2022-04-23 08:28:12 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-08-20 08:35:49 +00: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 ];
|
|
|
|
};
|
|
|
|
}
|