46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
19 lines
524 B
Nix
19 lines
524 B
Nix
{ 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 stdenv.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;
|
|
};
|
|
}
|