depot/third_party/nixpkgs/pkgs/development/libraries/libmowgli/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

18 lines
524 B
Nix

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