79921889a0
Nix expressions provide all the features that Quilt series files have, so using those instead is pointless. Also, lib.readPathsFromFile (the function used to read series files) has the following warning: > NOTE: This function is not performant and should be avoided. This also removes some orphaned series files, and unused references to copyPathsToStore (which were probably missed in previous commits where calls to lib.readPathsFromFile were removed)
20 lines
523 B
Nix
20 lines
523 B
Nix
{
|
|
mkDerivation, lib, kdepimTeam,
|
|
extra-cmake-modules, kdoctools,
|
|
grantlee, ki18n, kiconthemes, knewstuff, kservice, kxmlgui, qtbase,
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "grantleetheme";
|
|
meta = {
|
|
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
|
|
maintainers = kdepimTeam;
|
|
};
|
|
output = [ "out" "dev" ];
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [
|
|
grantlee ki18n kiconthemes knewstuff kservice kxmlgui qtbase
|
|
];
|
|
propagatedBuildInputs = [ grantlee kiconthemes knewstuff ];
|
|
}
|