about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/ksanecore.nix
blob: 4ba18ffca1dff27384f247eeb58963551f3c2c45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  mkDerivation, lib,
  extra-cmake-modules, qtbase,
  ki18n, sane-backends
}:

mkDerivation {
  pname = "ksanecore";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ qtbase ki18n sane-backends ];
  meta = with lib; {
    license = licenses.gpl2;
    maintainers = with maintainers; [ andrevmatos ];
  };
}