nixpkgs/pkgs/data/misc/spdx-license-list-data/default.nix
2021-11-22 00:15:53 +01:00

29 lines
687 B
Nix

{ stdenvNoCC, lib, fetchFromGitHub }:
stdenvNoCC.mkDerivation rec {
pname = "spdx-license-list-data";
version = "3.15";
src = fetchFromGitHub {
owner = "spdx";
repo = "license-list-data";
rev = "v${version}";
sha256 = "0r88j00shmhayfq8avswaxsaj1my1vq540rg0srma29862vrjpfk";
};
installPhase = ''
runHook preInstall
install -vDt $out/json json/licenses.json
runHook postInstall
'';
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 ];
platforms = platforms.all;
};
}