5ba93bd4c3
Provides a globally unique name (kdeFramework) instead of using attribute paths as namespaces and locally overloading the mkDerivation name.
14 lines
264 B
Nix
14 lines
264 B
Nix
{ kdeFramework, lib
|
|
, extra-cmake-modules
|
|
, ilmbase
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kimageformats";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
NIX_CFLAGS_COMPILE = "-I${ilmbase}/include/OpenEXR";
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|