mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
bfr added (pipe buffer)
svn path=/nixpkgs/trunk/; revision=12348
This commit is contained in:
parent
fdc5b51ab9
commit
78e9d3eef0
17
pkgs/tools/misc/bfr/default.nix
Normal file
17
pkgs/tools/misc/bfr/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user