Revert "Revert unlicensed contribution"

The last contributor has agreed after all. Maybe I acted one day
too soon? In that case, apologies for the drama.

This reverts commit 14dbada01f.
This commit is contained in:
Robert Hensing 2021-08-02 13:43:28 +02:00
parent bef1b74164
commit 4112a081ef

View file

@ -46,6 +46,13 @@ let
{ outPath = builtins.path { path = info.path; };
narHash = info.narHash;
}
else if info.type == "tarball" then
{ outPath =
fetchTarball
({ inherit (info) url; }
// (if info ? narHash then { sha256 = info.narHash; } else {})
);
}
else if info.type == "gitlab" then
{ inherit (info) rev narHash lastModified;
outPath =