nixpkgs/pkgs/development/libraries/pth/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

16 lines
333 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "pth-2.0.7";
src = fetchurl {
url = "mirror://gnu/pth/${name}.tar.gz";
sha256 = "0ckjqw5kz5m30srqi87idj7xhpw6bpki43mj07bazjm2qmh3cdbj";
};
meta = {
description = "The GNU Portable Threads library";
homepage = http://www.gnu.org/software/pth;
};
}