mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 04:03:56 +00:00
4748008271
Suggested by @eliasp, to improve compatibility and address missing runtime dependency.
14 lines
269 B
Nix
14 lines
269 B
Nix
{
|
|
mkDerivation,
|
|
extra-cmake-modules,
|
|
bzip2, xz, qtbase, zlib, zstd
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "karchive";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ bzip2 xz zlib zstd ];
|
|
propagatedBuildInputs = [ qtbase ];
|
|
outputs = [ "out" "dev" ];
|
|
}
|