mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
35 lines
780 B
Nix
35 lines
780 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "vrb-${version}";
|
|
version = "0.5.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://vrb.sourceforge.net/download/${name}.tar.bz2";
|
|
sha256 = "d579ed1998ef2d78e2ef8481a748d26e1fa12cdda806d2e31d8ec66ffb0e289f";
|
|
};
|
|
|
|
patches = [
|
|
./removed_options.patch
|
|
./unused-but-set-variable.patch
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs configure
|
|
'';
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/man/man3
|
|
cp -p vrb/man/man3/*.3 $out/share/man/man3/
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A virtual ring buffer library written in C";
|
|
license = licenses.lgpl21;
|
|
homepage = http://vrb.sourceforge.net/;
|
|
maintainers = [ maintainers.bobvanderlinden ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|
|
|