faf0d3e91d
- Reduce environment pollution with a separate $bin output containing programs, plugins, and shared data. Libraries remain in $out and are not installed into the environment. - Only propagate build inputs as required.
16 lines
320 B
Nix
16 lines
320 B
Nix
{ mkDerivation
|
|
, lib
|
|
, extra-cmake-modules, qtbase
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "oxygen-icons5";
|
|
meta = {
|
|
license = lib.licenses.lgpl3Plus;
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ qtbase ];
|
|
outputs = [ "out" ]; # only runtime outputs
|
|
}
|