Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Update MDDS homepage and version, needed for LibreOffice 5.0.0

+4 -4
+3 -3
pkgs/development/libraries/mdds/default.nix
··· 1 { stdenv, fetchurl }: 2 3 stdenv.mkDerivation rec { 4 - version = "0.12.0"; 5 name = "mdds-${version}"; 6 7 src = fetchurl { 8 url = "http://kohei.us/files/mdds/src/mdds_${version}.tar.bz2"; 9 - sha256 = "10ar7r0gkdl2r7916jlkl5c38cynrh7x9s90a5i8d242r8ixw8ia"; 10 }; 11 12 postInstall = '' ··· 16 17 meta = { 18 inherit version; 19 - homepage = https://code.google.com/p/multidimalgorithm/; 20 description = "A collection of multi-dimensional data structure and indexing algorithm"; 21 platforms = stdenv.lib.platforms.all; 22 };
··· 1 { stdenv, fetchurl }: 2 3 stdenv.mkDerivation rec { 4 + version = "0.12.1"; 5 name = "mdds-${version}"; 6 7 src = fetchurl { 8 url = "http://kohei.us/files/mdds/src/mdds_${version}.tar.bz2"; 9 + sha256 = "0gg8mb9kxh3wggh7njj1gf90xy27p0yq2cw88wqar9hhg2fmwmi3"; 10 }; 11 12 postInstall = '' ··· 16 17 meta = { 18 inherit version; 19 + homepage = "https://gitlab.com/mdds/mdds"; 20 description = "A collection of multi-dimensional data structure and indexing algorithm"; 21 platforms = stdenv.lib.platforms.all; 22 };
+1 -1
pkgs/development/libraries/mdds/default.upstream
··· 1 - url https://code.google.com/p/multidimalgorithm/wiki/Downloads 2 version_link '[.]tar[.][a-z0-9]+$' 3 version '.*_([0-9.]+)[.]tar[.].*' '\1' 4
··· 1 + url https://gitlab.com/mdds/mdds 2 version_link '[.]tar[.][a-z0-9]+$' 3 version '.*_([0-9.]+)[.]tar[.].*' '\1' 4