1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/desktops/kde-4.14/kdegraphics/libksane.nix

11 lines
280 B
Nix
Raw Normal View History

{ stdenv, kde, kdelibs, sane-backends }:
2014-09-20 05:09:11 -04:00
kde {
buildInputs = [ kdelibs sane-backends ];
2014-09-20 05:09:11 -04:00
meta = {
description = "An image scanning library that provides a QWidget that contains all the logic needed to interface a sacanner";
license = stdenv.lib.licenses.gpl2;
};
}