Merge pull request #171817 from bbenne10/master

Nix-direnv: 2.0.1 -> 2.1.0
This commit is contained in:
Jörg Thalheim 2022-05-15 22:55:31 +01:00 committed by GitHub
commit b30ca1d27e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 3 deletions

View file

@ -14542,4 +14542,16 @@
github = "bryanhonof"; github = "bryanhonof";
githubId = 5932804; githubId = 5932804;
}; };
bbenne10 = {
email = "Bryan.Bennett@protonmail.com";
matrix = "@bryan.bennett:matrix.org";
github = "bbenne10";
githubId = 687376;
name = "Bryan Bennett";
keys = [{
# compare with https://keybase.io/bbenne10
longkeyid = "rsa2048/0xEF90E3E98B8F5C0B";
fingerprint = "41EA 00B4 00F9 6970 1CB2 D3AF EF90 E3E9 8B8F 5C0B";
}];
};
} }

View file

@ -7,13 +7,13 @@
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "nix-direnv"; pname = "nix-direnv";
version = "2.0.1"; version = "2.1.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "nix-community"; owner = "nix-community";
repo = "nix-direnv"; repo = "nix-direnv";
rev = version; rev = version;
sha256 = "sha256-edRdnMNYB5N9v9QlfSFNqJl93X0rSCllmzSZO9+sCOg="; sha256 = "sha256-PANJTaGdMvIPglgQCOs+fJc20ZnnHXx7rBdyoA4rQ0A=";
}; };
# Substitute instead of wrapping because the resulting file is # Substitute instead of wrapping because the resulting file is
@ -34,6 +34,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/nix-community/nix-direnv"; homepage = "https://github.com/nix-community/nix-direnv";
license = licenses.mit; license = licenses.mit;
platforms = platforms.unix; platforms = platforms.unix;
maintainers = with maintainers; [ mic92 ]; maintainers = with maintainers; [ mic92 bbenne10 ];
}; };
} }