summary refs log tree commit diff
path: root/pkgs/development/libraries/libmowgli/default.nix
blob: 71611e2ad5bcb871b7c2bffc52b23681efbb1224 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ 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;
  };
}