forked from mirrors/nixpkgs
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;
|
||
|
};
|
||
|
}
|