09b14764dd
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. This update was made based on information from https://repology.org/metapackage/libmowgli/versions. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 2.1.3 with grep in /nix/store/2dwfl61xs1bwl8xkml0asgxpwcg33n2k-libmowgli-2.1.3 - directory tree listing: https://gist.github.com/bac007dbe50cb7dc4d1a836655fd1179
18 lines
510 B
Nix
18 lines
510 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
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 = {
|
|
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;
|
|
};
|
|
}
|