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.
27 lines
732 B
Nix
27 lines
732 B
Nix
{ buildGoModule, fetchFromSourcehut, lib }:
|
|
buildGoModule rec {
|
|
pname = "ratt";
|
|
version = "unstable-2023-02-12";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~ghost08";
|
|
repo = "ratt";
|
|
rev = "ed1a675685b9d86d6602e168199ba9b4260f5f06";
|
|
hash = "sha256-HfS97Lxt6FAj/2/WAzLI06F/h6TP5m2lHHOTAs8XNFY=";
|
|
};
|
|
|
|
proxyVendor = true;
|
|
vendorHash = "sha256-L8mDs9teQJW6P3dhKSLfzbpA7kzhJk61oR2q0ME+u0M=";
|
|
|
|
# tests try to access the internet to scrape websites
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Tool for converting websites to rss/atom feeds";
|
|
homepage = "https://git.sr.ht/~ghost08/ratt";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ kmein ];
|
|
mainProgram = "ratt";
|
|
};
|
|
}
|