about summary refs log tree commit diff
path: root/pkgs/development/libraries/libmowgli/default.nix
blob: 4bc8bc19a1224c21a4df411a3067e5dce229668d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "libmowgli-0.7.0";
  
  src = fetchurl {
    url = http://distfiles.atheme.org/libmowgli-0.7.0.tbz2;
    sha256 = "1d6318zfr4khlq8j290wxn026gnwdd6p81klkh6h0fkdawpvplzx";
  };
  
  meta = {
    description = "A development framework for C providing high performance and highly flexible algorithms";
    homepage = http://www.atheme.org/projects/mowgli.shtml;
  };
}