summary refs log tree commit diff
path: root/pkgs/tools/misc/bfr/default.nix
blob: 3be824d9a404374a07108fb3fb47a4a40877e5b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, perl }:

stdenv.mkDerivation rec {
  name = "bfr-1.6";
  version = "1.6";

  src = fetchurl {
    url = "http://www.sourcefiles.org/Utilities/Text_Utilities/bfr-${version}.tar.bz2";
    sha256 = "0fadfssvj9klj4dq9wdrzys1k2a1z2j0p6kgnfgbjv0n1bq6h4cy";
  };

  buildInputs = [ perl ];

  meta = with stdenv.lib; {
    description = "A general-purpose command-line pipe buffer";
    homepage = http://www.glines.org/wiki/bfr;
    license = stdenv.lib.licenses.gpl2;
    maintainers = with maintainers; [ pSub ];
    platforms = platforms.linux;
  };
}