Merge pull request #116729 from oxzi/spdx-license-list-data-3.12

spdx-license-list-data: 3.11 -> 3.12
This commit is contained in:
Sandro 2021-03-18 16:06:12 +01:00 committed by GitHub
commit b77372d43d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,25 +2,28 @@
stdenv.mkDerivation rec {
pname = "spdx-license-list-data";
version = "3.11";
version = "3.12";
src = fetchFromGitHub {
owner = "spdx";
repo = "license-list-data";
rev = "v${version}";
sha256 = "1iwyqhh6lh51a47mhfy98zvjan8yjsvlym8qz0isx2i1zzxlj47a";
sha256 = "09xci8dzblg3d30jf7s43zialbcxlxly03zrkiymcvnzixg8v48f";
};
phases = [ "unpackPhase" "installPhase" ];
installPhase = ''
runHook preInstall
install -vDt $out/json json/licenses.json
runHook postInstall
'';
meta = {
meta = with lib; {
description = "Various data formats for the SPDX License List";
homepage = "https://github.com/spdx/license-list-data";
license = lib.licenses.cc0;
platforms = lib.platforms.all;
license = licenses.cc0;
maintainers = with maintainers; [ oxzi ];
platforms = platforms.all;
};
}