nixpkgs/pkgs/misc/drivers/postscript-lexmark/default.nix
Silvan Mosberger 57bccb3cb8 treewide: http -> https sources (#42676)
* treewide: http -> https sources

This updates the source urls of all top-level packages from http to
https where possible.

* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00

38 lines
1 KiB
Nix

{ stdenv, lib, fetchurl, rpmextract }:
let
version = "20160218";
in
stdenv.mkDerivation {
name = "postscript-lexmark-${version}";
src = fetchurl {
url = "https://www.openprinting.org/download/printdriver/components/lsb3.2/main/RPMS/noarch/openprinting-ppds-postscript-lexmark-${version}-1lsb3.2.noarch.rpm";
sha256 = "0wbhvypdr96a5ddg6kj41dn9sbl49n7pfi2vs762ij82hm2gvwcm";
};
nativeBuildInputs = [ rpmextract ];
phases = [ "unpackPhase" "installPhase"];
sourceRoot = ".";
unpackPhase = ''
rpmextract $src
for ppd in opt/OpenPrinting-Lexmark/ppds/Lexmark/*; do
gzip -d $ppd
done
'';
installPhase = ''
mkdir -p $out/share/cups/model/postscript-lexmark
cp opt/OpenPrinting-Lexmark/ppds/Lexmark/*.ppd $out/share/cups/model/postscript-lexmark/
cp -r opt/OpenPrinting-Lexmark/doc $out/doc
'';
meta = with stdenv.lib; {
homepage = http://www.openprinting.org/driver/Postscript-Lexmark/;
description = "Lexmark Postscript Drivers";
platforms = platforms.linux;
};
}