uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
45
pkgs/servers/p910nd/default.nix
Normal file
45
pkgs/servers/p910nd/default.nix
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "p910nd";
|
||||
version = "0.97";
|
||||
|
||||
src = fetchurl {
|
||||
sha256 = "0vy2qf386dif1nqznmy3j953mq7c4lk6j2hgyzkbmfi4msiq1jaa";
|
||||
url = "mirror://sourceforge/p910nd/${pname}-${version}.tar.bz2";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace Makefile --replace "/usr" ""
|
||||
substituteInPlace Makefile --replace "gcc" "${stdenv.cc.targetPrefix}cc"
|
||||
'';
|
||||
|
||||
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 lib; {
|
||||
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 = "https://sourceforge.net/projects/p910nd/";
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue