mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 10:53:52 +00:00
libinsane: init at 1.0.3
This commit is contained in:
parent
42f0be81ae
commit
88d5b00345
47
pkgs/development/libraries/libinsane/default.nix
Normal file
47
pkgs/development/libraries/libinsane/default.nix
Normal file
@ -0,0 +1,47 @@
|
||||
{ stdenv
|
||||
, lib
|
||||
, meson
|
||||
, ninja
|
||||
, fetchFromGitLab
|
||||
, pkg-config
|
||||
, glib
|
||||
, docbook_xsl
|
||||
, sane-backends
|
||||
, gobject-introspection
|
||||
, vala
|
||||
, gtk-doc
|
||||
, valgrind
|
||||
, doxygen
|
||||
, cunit
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libinsane";
|
||||
version = "1.0.3";
|
||||
|
||||
outputs = [ "out" "dev" "devdoc" ];
|
||||
|
||||
src = fetchFromGitLab {
|
||||
domain = "gitlab.gnome.org";
|
||||
repo = "libinsane";
|
||||
group = "World";
|
||||
owner = "OpenPaperwork";
|
||||
rev = version;
|
||||
sha256 = "1x2pl4ahqjc6ql97v7fnyna0qrnw3bxmqg3lyi5biyajfhg9nvql";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ meson pkg-config ninja doxygen gtk-doc docbook_xsl gobject-introspection vala ];
|
||||
|
||||
buildInputs = [ sane-backends glib ];
|
||||
|
||||
checkInputs = [ cunit valgrind ];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = {
|
||||
description = "Crossplatform access to image scanners (paper eaters only)";
|
||||
homepage = "https://openpaper.work/en/projects/";
|
||||
license = lib.licenses.lgpl3Plus;
|
||||
maintainers = [ lib.maintainers.symphorien ];
|
||||
};
|
||||
}
|
@ -4804,6 +4804,8 @@ in
|
||||
|
||||
libgumath = callPackage ../development/libraries/libgumath { };
|
||||
|
||||
libinsane = callPackage ../development/libraries/libinsane { };
|
||||
|
||||
libipfix = callPackage ../development/libraries/libipfix { };
|
||||
|
||||
libircclient = callPackage ../development/libraries/libircclient { };
|
||||
|
Loading…
Reference in New Issue
Block a user