11 lines
197 B
Nix
11 lines
197 B
Nix
|
{ kde, kdelibs, libksane }:
|
||
|
|
||
|
kde {
|
||
|
buildInputs = [ kdelibs libksane ];
|
||
|
|
||
|
meta = {
|
||
|
description = "A KScan plugin that implements the scanning through libksane";
|
||
|
license = "GPLv2";
|
||
|
};
|
||
|
}
|