tvl-depot/nix/fetchGoModule/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
564 B
Nix
Raw Normal View History

{ lib, pkgs, ... }:
let
inherit (lib)
lowerChars
replaceStrings
upperChars
;
caseFold = replaceStrings upperChars (map (c: "!" + c) lowerChars);
in
{ path, version, sha256 }:
pkgs.fetchurl {
name = "source";
url = "https://proxy.golang.org/${caseFold path}/@v/v${version}.zip";
inherit sha256;
recursiveHash = true;
downloadToTemp = true;
postFetch = ''
unpackDir="$TMPDIR/unpack"
mkdir "$unpackDir"
${pkgs.unzip}/bin/unzip "$downloadedFile" -d "$unpackDir"
mv "$unpackDir/${path}@v${version}" "$out"
'';
}