2022-12-06T21:55:55 spdx-license-list-data 3.18 -> 3.19 https://github.com/spdx/license-list-data/releases 2022-12-06T21:55:57 attrpath: spdx-license-list-data 2022-12-06T21:55:57 Checking auto update branch... 2022-12-06T21:55:57 No auto update branch exists 2022-12-06T21:55:57 Old version 3.18" not present in master derivation file with contents: { stdenvNoCC, lib, fetchFromGitHub }: stdenvNoCC.mkDerivation rec { pname = "spdx-license-list-data"; version = "3.19"; src = fetchFromGitHub { owner = "spdx"; repo = "license-list-data"; rev = "v${version}"; hash = "sha256-qT9Q6Mntnt9lOhYmGFJlkDyAHQ0CGQpWr1rLF08FGeg="; }; # List of file formats to package. _types = [ "html" "json" "jsonld" "rdfa" "rdfnt" "rdfturtle" "rdfxml" "template" "text" ]; outputs = [ "out" ] ++ _types; dontPatch = true; dontConfigure = true; dontBuild = true; installPhase = '' runHook preInstall mkdir -pv $out for t in $_types do _outpath=''${!t} mkdir -pv $_outpath cp -ar $t $_outpath && echo "$t format installed" done runHook postInstall ''; dontFixup = true; meta = with lib; { description = "Various data formats for the SPDX License List"; homepage = "https://github.com/spdx/license-list-data"; license = licenses.cc0; maintainers = with maintainers; [ oxzi c0bw3b ]; platforms = platforms.all; }; }