nixpkgs/pkgs/development/tools/parsing/byacc/default.nix
Eelco Dolstra 6609710409 * Get rid of many instances of "args: with args;", and other coding
guidelines violations.
* Updated libsamplerate to 0.1.7.

svn path=/nixpkgs/trunk/; revision=22782
2010-07-28 11:55:54 +00:00

22 lines
489 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "byacc-1.9";
src = fetchurl {
url = http://www.isc.org/sources/devel/tools/byacc-1.9.tar.gz;
sha256 = "d61a15ac4ac007c188d0c0e99365f016f8d327755f43032b58e400754846f736";
};
preConfigure =
''mkdir -p $out/bin
sed -i "s@^DEST.*\$@DEST = $out/bin/yacc@" Makefile
'';
meta = {
description = "Berkeley YACC";
homepage = http://dickey.his.com/byacc/byacc.html;
license = "public domain";
};
}