ksanecore: init 22.08.0

new dependency of libksane
This commit is contained in:
André Vitor de Lima Matos 2022-08-19 08:00:42 -03:00 committed by Peter Hoeg
parent d4f0548f35
commit 3759e4ac86
4 changed files with 25 additions and 2 deletions

View file

@ -816,6 +816,12 @@
githubId = 7112447;
name = "Andre S. Ramos";
};
andrevmatos = {
email = "andrevmatos@gmail.com";
github = "andrevmatos";
githubId = 587021;
name = "André V L Matos";
};
andrew-d = {
email = "andrew@du.nham.ca";
github = "andrew-d";

View file

@ -186,6 +186,7 @@ let
kreversi = callPackage ./kreversi.nix {};
krfb = callPackage ./krfb.nix {};
kruler = callPackage ./kruler.nix {};
ksanecore = callPackage ./ksanecore.nix {};
kshisen = callPackage ./kshisen.nix {};
ksmtp = callPackage ./ksmtp {};
kspaceduel = callPackage ./kspaceduel.nix {};

View file

@ -0,0 +1,15 @@
{
mkDerivation, lib,
extra-cmake-modules, qtbase,
ki18n, sane-backends
}:
mkDerivation {
pname = "ksanecore";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ qtbase ki18n sane-backends ];
meta = with lib; {
license = licenses.gpl2;
maintainers = with maintainers; [ andrevmatos ];
};
}

View file

@ -2,7 +2,7 @@
mkDerivation, lib,
extra-cmake-modules, qtbase,
ki18n, ktextwidgets, kwallet, kwidgetsaddons,
sane-backends
ksanecore, sane-backends
}:
mkDerivation {
@ -12,5 +12,6 @@ mkDerivation {
maintainers = with maintainers; [ polendri ];
};
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ qtbase ki18n ktextwidgets kwallet kwidgetsaddons sane-backends ];
buildInputs = [ qtbase ki18n ktextwidgets kwallet kwidgetsaddons ];
propagatedBuildInputs = [ ksanecore sane-backends ];
}