summaryrefslogtreecommitdiff
path: root/pkgs/kde/frameworks/solid/default.nix
blob: 3092f9e0340571b6f8b6e2432883b55cb92161e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  mkKdeDerivation,
  qttools,
  bison,
  flex,
  libimobiledevice,
}:
mkKdeDerivation {
  pname = "solid";

  extraNativeBuildInputs = [
    qttools
    bison
    flex
  ];
  extraBuildInputs = [ libimobiledevice ];
  meta.mainProgram = "solid-hardware6";
}