nixpkgs/pkgs/desktops/plasma-5/plasma-nano/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
197 B
Nix
Raw Normal View History

2021-03-09 22:24:34 +00:00
{
mkDerivation,
extra-cmake-modules,
plasma-framework
}:
mkDerivation {
2022-03-06 21:28:56 +00:00
pname = "plasma-nano";
2021-03-09 22:24:34 +00:00
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [
plasma-framework
];
}