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.

13 lines
193 B
Nix
Raw Normal View History

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