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: 355a4f1bd33c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5df2fc2cefeb
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 1, 2020

  1. genpass: 0.4.1 -> 0.4.9

    * caught up with the newest released version
    * genpass main repo moved to sourcehut
    cyplo committed Nov 1, 2020
    Copy the full SHA
    e687a4d View commit details

Commits on Nov 2, 2020

  1. Merge pull request #102301 from cyplo/update-genpass

    genpass: 0.4.1 -> 0.4.9
    stigtsp authored Nov 2, 2020
    Copy the full SHA
    5df2fc2 View commit details
Showing with 7 additions and 8 deletions.
  1. +7 −8 pkgs/tools/security/genpass/default.nix
15 changes: 7 additions & 8 deletions pkgs/tools/security/genpass/default.nix
Original file line number Diff line number Diff line change
@@ -1,28 +1,27 @@
{ stdenv
, fetchFromGitHub
, fetchgit
, rustPlatform
, CoreFoundation
, libiconv
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "genpass";
version = "0.4.1";
version = "0.4.9";

src = fetchFromGitHub {
owner = "cyplo";
repo = pname;
src = fetchgit {
url = "https://git.sr.ht/~cyplo/genpass";
rev = "v${version}";
sha256 = "1b22m7g55k5ry0vwyd8pakh8rmfkhk37qy5r74cn3n5pv3fcwini";
sha256 = "1dpv2iyd48xd8yw9bmymjjrkhsgmpwvsl5b9zx3lpaaq59ypi9g9";
};

cargoSha256 = "1p6l64s9smhwka8bh3pamqimamxziad859i62nrmxzqc49nq5s7m";
cargoSha256 = "1cwxpc3xkw673wiamr4v7clrzwxl8ma1vdr6bw0hixm37gxdxz7x";

buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CoreFoundation libiconv Security ];

meta = with stdenv.lib; {
description = "A simple yet robust commandline random password generator";
homepage = "https://github.com/cyplo/genpass";
homepage = "https://sr.ht/~cyplo/genpass/";
license = licenses.agpl3;
maintainers = with maintainers; [ cyplo ];
};