summary refs log tree commit diff
path: root/pkgs/servers/p910nd
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-09-30 02:29:21 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-09-30 02:29:52 +0200
commitc7c677bc7b5906fa5e42b8a77442908ab7fed6f9 (patch)
tree3b9e5bdc628d4fc6aba1107021a6a1155dbd60fc /pkgs/servers/p910nd
parent7e3bd2e86d11b0a48fd07b88bab53eacf3aa886e (diff)
downloadnixpkgs-c7c677bc7b5906fa5e42b8a77442908ab7fed6f9.tar
nixpkgs-c7c677bc7b5906fa5e42b8a77442908ab7fed6f9.tar.gz
nixpkgs-c7c677bc7b5906fa5e42b8a77442908ab7fed6f9.tar.bz2
nixpkgs-c7c677bc7b5906fa5e42b8a77442908ab7fed6f9.tar.lz
nixpkgs-c7c677bc7b5906fa5e42b8a77442908ab7fed6f9.tar.xz
nixpkgs-c7c677bc7b5906fa5e42b8a77442908ab7fed6f9.tar.zst
nixpkgs-c7c677bc7b5906fa5e42b8a77442908ab7fed6f9.zip
p910nd: init at 0.97
Diffstat (limited to 'pkgs/servers/p910nd')
-rw-r--r--pkgs/servers/p910nd/default.nix48
1 files changed, 48 insertions, 0 deletions
diff --git a/pkgs/servers/p910nd/default.nix b/pkgs/servers/p910nd/default.nix
new file mode 100644
index 00000000000..ea5214c7bb4
--- /dev/null
+++ b/pkgs/servers/p910nd/default.nix
@@ -0,0 +1,48 @@
+{ stdenv, fetchurl }:
+
+let
+  version = "0.97";
+  name = "p910nd-${version}";
+in stdenv.mkDerivation {
+  inherit name;
+
+  src = fetchurl {
+    sha256 = "0vy2qf386dif1nqznmy3j953mq7c4lk6j2hgyzkbmfi4msiq1jaa";
+    url = "mirror://sourceforge/p910nd/${name}.tar.bz2";
+  };
+
+  postPatch = ''
+    sed -e "s|/usr||g" -i Makefile
+  '';
+
+  makeFlags = "DESTDIR=$(out) BINDIR=/bin";
+
+  postInstall = ''
+    # Match the man page:
+    mv $out/etc/init.d/p910nd{,.sh}
+
+    # The legacy init script is useful only (and even then...) as an example:
+    mkdir -p $out/share/doc/examples
+    mv $out/etc $out/share/doc/examples
+  '';
+
+  meta = with stdenv.lib; {
+    inherit version;
+    description = "Small printer daemon passing jobs directly to the printer";
+    longDescription = ''
+      p910nd is a small printer daemon intended for diskless platforms that
+      does not spool to disk but passes the job directly to the printer.
+      Normally a lpr daemon on a spooling host connects to it with a TCP
+      connection on port 910n (where n=0, 1, or 2 for lp0, 1 and 2
+      respectively). p910nd is particularly useful for diskless platforms.
+      Common Unix Printing System (CUPS) supports this protocol, it's called
+      the AppSocket protocol and has the scheme socket://. LPRng also supports
+      this protocol and the syntax is lp=remotehost%9100 in /etc/printcap.
+    '';
+    homepage = http://p910nd.sourceforge.net/;
+    downloadPage = http://sourceforge.net/projects/p910nd/;
+    license = licenses.gpl2;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ nckx ];
+  };
+}