neko: 2.2.0 -> 2.3.0
Co-authored-by: sternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>
This commit is contained in:
parent
3205e23fe0
commit
dc376c7e75
1 changed files with 8 additions and 6 deletions
|
@ -1,14 +1,16 @@
|
||||||
{ lib, stdenv, fetchurl, boehmgc, zlib, sqlite, pcre, cmake, pkg-config
|
{ lib, stdenv, fetchFromGitHub, boehmgc, zlib, sqlite, pcre, cmake, pkg-config
|
||||||
, git, apacheHttpd, apr, aprutil, libmysqlclient, mbedtls, openssl, pkgs, gtk2, libpthreadstubs
|
, git, apacheHttpd, apr, aprutil, libmysqlclient, mbedtls, openssl, pkgs, gtk2, libpthreadstubs
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "neko";
|
pname = "neko";
|
||||||
version = "2.2.0";
|
version = "2.3.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://nekovm.org/media/neko-${version}-src.tar.gz";
|
owner = "HaxeFoundation";
|
||||||
sha256 = "1qv47zaa0vzhjlq5wb71627n7dbsxpc1gqpg0hsngjxnbnh1q46g";
|
repo = "neko";
|
||||||
|
rev = "v${lib.replaceStrings [ "." ] [ "-" ] version}";
|
||||||
|
sha256 = "19rc59cx7qqhcqlb0znwbnwbg04c1yq6xmvrwm1xi46k3vxa957g";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake pkg-config git ];
|
nativeBuildInputs = [ cmake pkg-config git ];
|
||||||
|
@ -32,7 +34,7 @@ stdenv.mkDerivation rec {
|
||||||
description = "A high-level dynamically typed programming language";
|
description = "A high-level dynamically typed programming language";
|
||||||
homepage = "https://nekovm.org";
|
homepage = "https://nekovm.org";
|
||||||
license = licenses.lgpl21;
|
license = licenses.lgpl21;
|
||||||
maintainers = [ maintainers.marcweber ];
|
maintainers = [ maintainers.marcweber maintainers.locallycompact ];
|
||||||
platforms = platforms.linux ++ platforms.darwin;
|
platforms = platforms.linux ++ platforms.darwin;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue