summaryrefslogtreecommitdiffstats
path: root/pkgs/tools
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2023-02-04 22:32:44 +0100
committerGitHub <noreply@github.com>2023-02-04 22:32:44 +0100
commit272edc3fbd2f227c9866e6aca0e12a5705018bec (patch)
treebab3f38f2f2ce5fdb40a48f88dab9e76e57657e5 /pkgs/tools
parent274e7d5dac1c042352510d4deb23ee45f0e86bef (diff)
parent2052689500095ff5d862d257cae3d427364f760c (diff)
Merge pull request #214493 from r-ryantm/auto-update/findomain
findomain: 8.2.1 -> 8.2.2
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/networking/findomain/default.nix20
1 files changed, 14 insertions, 6 deletions
diff --git a/pkgs/tools/networking/findomain/default.nix b/pkgs/tools/networking/findomain/default.nix
index d711bc2726d4..6bf26bfb4d4c 100644
--- a/pkgs/tools/networking/findomain/default.nix
+++ b/pkgs/tools/networking/findomain/default.nix
@@ -10,19 +10,26 @@
rustPlatform.buildRustPackage rec {
pname = "findomain";
- version = "8.2.1";
+ version = "8.2.2";
src = fetchFromGitHub {
owner = "Edu4rdSHL";
repo = pname;
- rev = version;
- sha256 = "sha256-NlaQhQtGQzOaTD18NMiicQOrovRuTCUq54vxu34JqIU=";
+ rev = "refs/tags/${version}";
+ hash = "sha256-9mtXtBq08lL6qQg1Pq1WNwbkG0yi99mCpxNuBvr14ms=";
};
- cargoSha256 = "sha256-I9OyH02JNdNgGK3918XwS5wt+11VppCTqzo50LuhnvI=";
+ cargoHash = "sha256-pKNqO43aFXZ/cbjNWt3tmBBbSTSKqVF7biNCPI1flvI=";
- nativeBuildInputs = [ installShellFiles perl ];
- buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
+ nativeBuildInputs = [
+ installShellFiles
+ perl
+ ];
+
+ buildInputs = lib.optionals stdenv.isDarwin [
+ libiconv
+ Security
+ ];
postInstall = ''
installManPage ${pname}.1
@@ -31,6 +38,7 @@ rustPlatform.buildRustPackage rec {
meta = with lib; {
description = "The fastest and cross-platform subdomain enumerator";
homepage = "https://github.com/Edu4rdSHL/findomain";
+ changelog = "https://github.com/Findomain/Findomain/releases/tag/${version}";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ Br1ght0ne ];
};