mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 02:57:36 +00:00
skanlite: init at 2.0.1
This commit is contained in:
parent
b6a72d0994
commit
c4c187ed72
33
pkgs/applications/office/skanlite/default.nix
Normal file
33
pkgs/applications/office/skanlite/default.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{ 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;
|
||||
};
|
||||
}
|
@ -10146,7 +10146,7 @@ with pkgs;
|
||||
### KDE APPLICATIONS
|
||||
|
||||
inherit (kdeApplications.override { libsForQt5 = self; })
|
||||
kholidays libkdcraw libkexiv2 libkipi libkomparediff2;
|
||||
kholidays libkdcraw libkexiv2 libkipi libkomparediff2 libksane;
|
||||
|
||||
### LIBRARIES
|
||||
|
||||
@ -16267,6 +16267,8 @@ with pkgs;
|
||||
|
||||
sipp = callPackage ../development/tools/misc/sipp { };
|
||||
|
||||
skanlite = libsForQt5.callPackage ../applications/office/skanlite { };
|
||||
|
||||
sonic-visualiser = libsForQt5.callPackage ../applications/audio/sonic-visualiser {
|
||||
inherit (pkgs.vamp) vampSDK;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user