Merge pull request #78177 from romildo/upd.libieee1284

libieee1284: init at 0.2.11
This commit is contained in:
José Romildo Malaquias 2020-01-25 18:09:18 -03:00 committed by GitHub
commit 0fc28d763e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,38 @@
{ stdenv, fetchFromGitHub, autoconf, automake, libtool, xmlto, docbook_xml_dtd_412, docbook_xsl }:
stdenv.mkDerivation rec {
pname = "libieee1284";
version = "0.2.11";
src = fetchFromGitHub {
owner = "twaugh";
repo = pname;
rev = "V${builtins.replaceStrings [ "." ] [ "_" ] version}";
sha256 = "0wfv1prmhhpyll9l4g1ij3im7hk9mm96ydw3l9fvhjp3993cdn2x";
};
nativeBuildInputs = [
autoconf
automake
libtool
xmlto
docbook_xml_dtd_412
docbook_xsl
];
configureFlags = [
"--without-python"
];
preConfigure = ''
./bootstrap
'';
meta = with stdenv.lib; {
description = "Parallel port communication library";
homepage = "http://cyberelk.net/tim/software/libieee1284/";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ romildo ];
};
}

View file

@ -12642,6 +12642,8 @@ in
libicns = callPackage ../development/libraries/libicns { };
libieee1284 = callPackage ../development/libraries/libieee1284 { };
libimobiledevice = callPackage ../development/libraries/libimobiledevice { };
libindicator-gtk2 = libindicator.override { gtkVersion = "2"; };