ipp-usb: init at 0.9.23

This commit is contained in:
Guillaume Girol
2022-12-06 21:06:54 +01:00
parent 27ccd29078
commit c3c187bfd6
2 changed files with 44 additions and 0 deletions
@@ -0,0 +1,42 @@
{ buildGoModule, avahi, libusb1, pkg-config, lib, fetchFromGitHub, ronn }:
buildGoModule rec {
pname = "ipp-usb";
version = "0.9.23";
src = fetchFromGitHub {
owner = "openprinting";
repo = "ipp-usb";
rev = version;
sha256 = "sha256-sbPQWKqkTaD3kLNs0noVIzAN9cwDEaULsqO7SMQH2Jo=";
};
postPatch = ''
# rebuild with patched paths
rm ipp-usb.8
substituteInPlace Makefile --replace "install: all" "install: man"
substituteInPlace systemd-udev/ipp-usb.service --replace "/sbin" "$out/bin"
for i in Makefile paths.go ipp-usb.8.md; do
substituteInPlace $i --replace "/usr" "$out"
substituteInPlace $i --replace "/var/ipp-usb" "/var/lib/ipp-usb"
done
'';
nativeBuildInputs = [ pkg-config ronn ];
buildInputs = [ libusb1 avahi ];
vendorSha256 = "sha256-KwW6KgopjF4tVo8eB4OtpXF5R8jfrJ9nibNmaN8U4l8=";
postInstall = ''
# to accomodate the makefile
cp $out/bin/ipp-usb .
make install DESTDIR=$out
'';
meta = {
description = "Daemon to use the IPP everywhere protocol with USB printers";
homepage = "https://github.com/OpenPrinting/ipp-usb";
maintainers = [ lib.maintainers.symphorien ];
platforms = lib.platforms.linux;
license = lib.licenses.bsd2;
};
}
+2
View File
@@ -2806,6 +2806,8 @@ with pkgs;
ipgrep = callPackage ../tools/networking/ipgrep { };
ipp-usb = callPackage ../os-specific/linux/ipp-usb { };
itch = callPackage ../games/itch {};
itd = callPackage ../applications/misc/itd { };