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 {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libmowgli";
|
2018-03-29 23:20:34 +01:00
|
|
|
version = "2.1.3";
|
2018-09-02 19:20:55 +01:00
|
|
|
|
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
|
|
|
};
|
2018-09-02 19:20:55 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2008-03-03 10:55:20 +00:00
|
|
|
description = "A development framework for C providing high performance and highly flexible algorithms";
|
2018-09-02 19:20:55 +01:00
|
|
|
homepage = https://github.com/atheme/libmowgli-2;
|
|
|
|
license = licenses.isc;
|
|
|
|
platforms = platforms.unix;
|
2008-03-03 10:55:20 +00:00
|
|
|
};
|
|
|
|
}
|