# This file was generated by GoReleaser. DO NOT EDIT. # vim: set ft=nix ts=2 sw=2 sts=2 et sta { system ? builtins.currentSystem , lib , fetchurl , installShellFiles , stdenvNoCC }: let shaMap = { x86_64-linux = "sha1"; x86_64-darwin = "sha3"; }; urlMap = { x86_64-linux = "https://dummyhost/download/v1.2.1/foo_linux_amd64v1.tar.gz"; x86_64-darwin = "https://dummyhost/download/v1.2.1/foo_darwin_amd64v1.tar.gz"; }; in stdenvNoCC.mkDerivation { pname = "partial"; version = "1.2.1"; src = fetchurl { url = urlMap.${system}; sha256 = shaMap.${system}; }; sourceRoot = "."; nativeBuildInputs = [ installShellFiles ]; installPhase = '' mkdir -p $out/bin cp -vr ./foo $out/bin/foo ''; system = system; meta = { sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; platforms = [ "x86_64-darwin" "x86_64-linux" ]; }; }