mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
18 lines
470 B
Nix
18 lines
470 B
Nix
{ mkDerivation, lib
|
|
, extra-cmake-modules, kdoctools
|
|
, qtscript, qtsvg, qtquickcontrols, qtwebkit
|
|
, krunner, shared-mime-info, kparts, knewstuff
|
|
, gpsd, perl
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "marble";
|
|
meta.license = with lib.licenses; [ lgpl21 gpl3 ];
|
|
outputs = [ "out" "dev" ];
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools perl ];
|
|
propagatedBuildInputs = [
|
|
qtscript qtsvg qtquickcontrols qtwebkit shared-mime-info krunner kparts
|
|
knewstuff gpsd
|
|
];
|
|
}
|