2022-01-02 23:49:02 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub }:
|
2008-03-03 10:55:20 +00:00
|
|
|
|
2011-07-26 02:14:19 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "libmowgli";
|
2018-03-29 22:20:34 +00:00
|
|
|
version = "2.1.3";
|
2018-09-02 18:20:55 +00:00
|
|
|
|
2022-01-02 23:49:02 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "atheme";
|
|
|
|
repo = "libmowgli-2";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "sha256-jlw6ixMoIdIjmQ86N+KN+Gez218sw894POkcCYnT0s0=";
|
2008-03-03 10:55:20 +00:00
|
|
|
};
|
2018-09-02 18:20:55 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2008-03-03 10:55:20 +00:00
|
|
|
description = "A development framework for C providing high performance and highly flexible algorithms";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/atheme/libmowgli-2";
|
2018-09-02 18:20:55 +00:00
|
|
|
license = licenses.isc;
|
|
|
|
platforms = platforms.unix;
|
2008-03-03 10:55:20 +00:00
|
|
|
};
|
|
|
|
}
|