bfr added (pipe buffer)

svn path=/nixpkgs/trunk/; revision=12348
This commit is contained in:
Marc Weber 2008-07-11 20:27:53 +00:00
parent fdc5b51ab9
commit 78e9d3eef0
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,17 @@
args:
args.stdenv.mkDerivation {
name = "bfr-1.6";
src = args.fetchurl {
url = http://www.glines.org/bin/pk/bfr-1.6.tar.bz2;
sha256 = "0fadfssvj9klj4dq9wdrzys1k2a1z2j0p6kgnfgbjv0n1bq6h4cy";
};
buildInputs =(with args; [perl]);
meta = {
description = "general-purpose command-line pipe buffer";
homepage = http://www.glines.org/wiki/bfr;
license = "GPL2";
};
}

View File

@ -426,6 +426,10 @@ let pkgs = rec {
inherit fetchurl stdenv flex;
};
bfr = import ../tools/misc/bfr {
inherit fetchurl stdenv perl;
};
asciidoc = import ../tools/typesetting/asciidoc {
inherit fetchurl stdenv bash python;
};