mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 16:43:58 +00:00
16 lines
209 B
Nix
16 lines
209 B
Nix
{
|
|
mkKdeDerivation,
|
|
kpmcore,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "partitionmanager";
|
|
|
|
propagatedUserEnvPkgs = [ kpmcore ];
|
|
|
|
passthru = {
|
|
inherit kpmcore;
|
|
};
|
|
|
|
meta.mainProgram = "partitionmanager";
|
|
}
|