Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4610a9f20d60
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 08340f998c71
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 29, 2021

  1. findomain: 2.1.5 -> 3.0.1

    r-ryantm committed Jan 29, 2021
    Copy the full SHA
    be65b5e View commit details
  2. Merge pull request #111090 from r-ryantm/auto-update/findomain

    findomain: 2.1.5 -> 3.0.1
    marsam authored Jan 29, 2021
    Copy the full SHA
    08340f9 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/networking/findomain/default.nix
6 changes: 3 additions & 3 deletions pkgs/tools/networking/findomain/default.nix
Original file line number Diff line number Diff line change
@@ -9,16 +9,16 @@

rustPlatform.buildRustPackage rec {
pname = "findomain";
version = "2.1.5";
version = "3.0.1";

src = fetchFromGitHub {
owner = "Edu4rdSHL";
repo = pname;
rev = version;
sha256 = "sha256-sGco8ISbm3C8w6FsF5oq7G09WBBTO9cVeoFnuKauMWQ=";
sha256 = "sha256-eM3XTZ/Y0Kk5bdC+xskS/btGEVrC50342YBYJdXAlDg=";
};

cargoSha256 = "sha256-X7us7mLtOSST5LazxSkej9D2ezEk9GiWdudqy4peSJ8=";
cargoSha256 = "sha256-U3WXb6qGGshaWJ3GIC+c3W9Y8Cz0O23J7mVojCwitlk=";

nativeBuildInputs = [ installShellFiles perl ];
buildInputs = lib.optional stdenv.isDarwin Security;