3
0
Fork 0
forked from mirrors/nixpkgs

Bump package version to 20200215

The actual most recent version is 20200215, so update the package version to this.
Furthermore, update the patch accordingly so it still builds. This adds back the
reallocarray.c file.
This commit is contained in:
D. Guthrie 2020-04-20 21:34:39 +01:00
parent a0c2892c06
commit cdc8f3f357
2 changed files with 2431 additions and 62 deletions

File diff suppressed because it is too large Load diff

View file

@ -1,12 +1,14 @@
{ stdenv, fetchurl, pkgconfig, ncurses, buildPackages, libbsd }:
{ stdenv, fetchFromGitHub, pkgconfig, ncurses, buildPackages, libbsd }:
stdenv.mkDerivation rec {
pname = "mg";
version = "20180927";
version = "20200215";
src = fetchurl {
url = "https://github.com/hboetes/mg/archive/${version}.tar.gz";
sha256 = "fbb09729ea00fe42dcdbc96ac7fc1d2b89eac651dec49e4e7af52fad4f5788f6";
src = fetchFromGitHub {
owner = "hboetes";
repo = "mg";
rev = "20200215";
sha256 = "1rss7d43hbq43n63gxfvx4b2vh2km58cchwzdf2ssqhaz3qj40m6";
};
enableParallelBuilding = true;