libmowgli: add license + update homepage

This commit is contained in:
Markus Kowalewski 2018-09-02 20:20:55 +02:00
parent 964b122431
commit 564f722495
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB

View File

@ -3,15 +3,16 @@
stdenv.mkDerivation rec {
name = "libmowgli-${version}";
version = "2.1.3";
src = fetchurl {
url = "https://github.com/atheme/libmowgli-2/archive/v${version}.tar.gz";
sha256 = "0xx4vndmwz40pxa5gikl8z8cskpdl9a30i2i5fjncqzlp4pspymp";
};
meta = {
meta = with stdenv.lib; {
description = "A development framework for C providing high performance and highly flexible algorithms";
homepage = http://www.atheme.org/projects/mowgli.shtml;
platforms = stdenv.lib.platforms.unix;
homepage = https://github.com/atheme/libmowgli-2;
license = licenses.isc;
platforms = platforms.unix;
};
}