mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:21:57 +03:00
Update HPLIP to 3.15.4
This commit is contained in:
parent
3efefb5baa
commit
c59c20ca0f
@ -61,6 +61,15 @@ was accordingly renamed to <literal>bomi</literal>
|
|||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
HPLIP (printer, scanner, and fax drivers for HP devices) has
|
||||||
|
been updated to version <literal>3.15.4</literal>. This release
|
||||||
|
adds support for the <literal>arm6l-linux</literal> and
|
||||||
|
<literal>arm7l-linux</literal> platforms.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
|
||||||
|
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</para>
|
</para>
|
||||||
|
@ -6,11 +6,11 @@
|
|||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
name = "hplip-3.15.2";
|
name = "hplip-3.15.4";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/hplip/${name}.tar.gz";
|
url = "mirror://sourceforge/hplip/${name}.tar.gz";
|
||||||
sha256 = "0z7n62vdbr0p0kls1m2sr3nhvkhx3rawcbzd0zdl0lnq8fkyq0jz";
|
sha256 = "0s1yiifp002n8qy0i4cv6j0hq9ikp4jabki5w3xzlaqgd4bjz1x3";
|
||||||
};
|
};
|
||||||
|
|
||||||
hplip_state =
|
hplip_state =
|
||||||
@ -21,9 +21,17 @@ let
|
|||||||
version = (builtins.parseDrvName name).version;
|
version = (builtins.parseDrvName name).version;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
hplip_arch =
|
||||||
|
{
|
||||||
|
"i686-linux" = "x86_32";
|
||||||
|
"x86_64-linux" = "x86_64";
|
||||||
|
"arm6l-linux" = "arm32";
|
||||||
|
"arm7l-linux" = "arm32";
|
||||||
|
}."${stdenv.system}" or (abort "Unsupported platform ${stdenv.system}");
|
||||||
|
|
||||||
plugin = fetchurl {
|
plugin = fetchurl {
|
||||||
url = "http://www.openprinting.org/download/printdriver/auxfiles/HP/plugins/${name}-plugin.run";
|
url = "http://www.openprinting.org/download/printdriver/auxfiles/HP/plugins/${name}-plugin.run";
|
||||||
sha256 = "1pzxv9yway1x1m5grz6042p54ldh7jcgv4qrkjhlcb4vr9plwql9";
|
sha256 = "00zhaq48m7p6nrxfy16086hzghf2pfr32s53sndbpp2514v2j392";
|
||||||
};
|
};
|
||||||
|
|
||||||
in
|
in
|
||||||
@ -135,7 +143,7 @@ stdenv.mkDerivation {
|
|||||||
license = if withPlugin
|
license = if withPlugin
|
||||||
then licenses.unfree
|
then licenses.unfree
|
||||||
else with licenses; [ mit bsd2 gpl2Plus ];
|
else with licenses; [ mit bsd2 gpl2Plus ];
|
||||||
platforms = platforms.linux;
|
platforms = [ "i686-linux" "x86_64-linux" "armv6l-linux" "armv7l-linux" ];
|
||||||
maintainers = with maintainers; [ ttuegel jgeerds ];
|
maintainers = with maintainers; [ ttuegel jgeerds ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user