mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
34 lines
868 B
Nix
34 lines
868 B
Nix
{ stdenv, fetchurl, cmake, extra-cmake-modules, qtbase,
|
|
kcoreaddons, kdoctools, ki18n, kio, kxmlgui, ktextwidgets,
|
|
libksane
|
|
}:
|
|
|
|
let
|
|
minorVersion = "2.0";
|
|
in stdenv.mkDerivation rec {
|
|
name = "skanlite-2.0.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/skanlite/${minorVersion}/${name}.tar.xz";
|
|
sha256 = "0dh2v8029gkhcf3pndcxz1zk2jgpihgd30lmplgirilxdq9l2i9v";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake kdoctools extra-cmake-modules ];
|
|
|
|
buildInputs = [
|
|
qtbase
|
|
kcoreaddons kdoctools ki18n kio kxmlgui ktextwidgets
|
|
libksane
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "KDE simple image scanning application";
|
|
homepage = http://www.kde.org/applications/graphics/skanlite/;
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ pshendry ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|