mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-03-06 23:31:34 +00:00
9 lines
239 B
Nix
9 lines
239 B
Nix
{ kdeFramework, lib, extra-cmake-modules, qtbase, qttools }:
|
|
|
|
kdeFramework {
|
|
name = "kcodecs";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
nativeBuildInputs = [ extra-cmake-modules qttools ];
|
|
buildInputs = [ qtbase ];
|
|
}
|