mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
3fac08a565
svn path=/nixpkgs/branches/kde-4.7/; revision=27959
16 lines
421 B
Nix
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;
|
|
};
|
|
}
|