mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
11 lines
222 B
Nix
11 lines
222 B
Nix
|
{ stdenv, kde, kdelibs, libksane }:
|
||
|
|
||
|
kde {
|
||
|
buildInputs = [ kdelibs libksane ];
|
||
|
|
||
|
meta = {
|
||
|
description = "A KScan plugin that implements the scanning through libksane";
|
||
|
license = stdenv.lib.licenses.gpl2;
|
||
|
};
|
||
|
}
|