2011-07-26 03:14:19 +01:00
|
|
|
{ stdenv, fetchurl }:
|
2008-03-03 10:55:20 +00:00
|
|
|
|
2011-07-26 03:14:19 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2018-03-29 23:20:34 +01:00
|
|
|
name = "libmowgli-${version}";
|
|
|
|
version = "2.1.3";
|
2008-03-03 10:55:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-03-29 23:20:34 +01:00
|
|
|
url = "https://github.com/atheme/libmowgli-2/archive/v${version}.tar.gz";
|
|
|
|
sha256 = "0xx4vndmwz40pxa5gikl8z8cskpdl9a30i2i5fjncqzlp4pspymp";
|
2008-03-03 10:55:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A development framework for C providing high performance and highly flexible algorithms";
|
|
|
|
homepage = http://www.atheme.org/projects/mowgli.shtml;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2008-03-03 10:55:20 +00:00
|
|
|
};
|
|
|
|
}
|