about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/plasma-5/plasma-nano/default.nix
blob: 6e2608c7f97b10aca11a5277f978845aa332748e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  mkDerivation,
  extra-cmake-modules,
  plasma-framework
}:

mkDerivation {
  pname = "plasma-nano";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [
    plasma-framework
  ];
}