nixpkgs/pkgs/development/libraries/libmowgli/default.nix
Eelco Dolstra 3fac08a565 * Audacious updated to 3.0.
svn path=/nixpkgs/branches/kde-4.7/; revision=27959
2011-07-26 02:14:19 +00:00

16 lines
421 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libmowgli-0.9.50";
src = fetchurl {
url = "http://distfiles.atheme.org/${name}.tar.bz2";
sha256 = "0wbnpd2rzk5jg6pghgxyx7brjrdmsyg4p0mm9blwmrdrj5ybxx9z";
};
meta = {
description = "A development framework for C providing high performance and highly flexible algorithms";
homepage = http://www.atheme.org/projects/mowgli.shtml;
};
}