ksanecore: init 22.08.0
new dependency of libksane
This commit is contained in:
parent
d4f0548f35
commit
3759e4ac86
4 changed files with 25 additions and 2 deletions
|
@ -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";
|
||||
|
|
|
@ -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 {};
|
||||
|
|
15
pkgs/applications/kde/ksanecore.nix
Normal file
15
pkgs/applications/kde/ksanecore.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 ];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue