12 lines
193 B
Nix
12 lines
193 B
Nix
{ kdeFramework, lib
|
|
, extra-cmake-modules
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kcodecs";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|