mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-01 08:25:55 +03:00
9 lines
223 B
Nix
9 lines
223 B
Nix
{ kdeFramework, lib, extra-cmake-modules, qtbase }:
|
|
|
|
kdeFramework {
|
|
name = "karchive";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ qtbase ];
|
|
}
|