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.
34 lines
733 B
Nix
34 lines
733 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "unfurl";
|
|
version = "0.4.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tomnomnom";
|
|
repo = "unfurl";
|
|
rev = "v${version}";
|
|
hash = "sha256-7aLe5d8ku5llfJ2xh8fT56vqj12/CJ1ez3Vte2PF8KQ=";
|
|
};
|
|
|
|
vendorHash = "sha256-Kpd916+jjGvw56N122Ej4CXVcv1/xr1THkjsrhkIy+U=";
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
# tests tries to download a list of tlds from the internet
|
|
postPatch = ''
|
|
echo com > /tmp/.tlds
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Pull out bits of URLs provided on stdin";
|
|
mainProgram = "unfurl";
|
|
homepage = "https://github.com/tomnomnom/unfurl";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
};
|
|
}
|