mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 11:03:57 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
47 lines
1.0 KiB
Nix
47 lines
1.0 KiB
Nix
{ stdenvNoCC, lib, fetchFromGitHub }:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "spdx-license-list-data";
|
|
version = "3.25.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "spdx";
|
|
repo = "license-list-data";
|
|
rev = "v${version}";
|
|
hash = "sha256-0UmeSwIWEYWyGkoVqh6cKv6lx+7fjBpDanr6yo3DN0s=";
|
|
};
|
|
|
|
# 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;
|
|
};
|
|
}
|