Merge pull request #272385 from NickCao/slurp

slurp: 1.4.0 -> 1.5.0
This commit is contained in:
Nick Cao 2023-12-16 11:21:53 -05:00 committed by GitHub
commit bb6cf10a57
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,13 +15,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "slurp";
version = "1.4.0";
version = "1.5.0";
src = fetchFromGitHub {
owner = "emersion";
repo = "slurp";
rev = "v${finalAttrs.version}";
hash = "sha256-jUuY2wuN00libHDaJEmrvQAb1o989Ly3nLyKHV0jz8Q=";
hash = "sha256-2M8f3kN6tihwKlUCp2Qowv5xD6Ufb71AURXqwQShlXI=";
};
depsBuildBuild = [
@ -53,6 +53,6 @@ stdenv.mkDerivation (finalAttrs: {
homepage = "https://github.com/emersion/slurp";
license = licenses.mit;
mainProgram = "slurp";
maintainers = with maintainers; [ buffet ];
maintainers = with maintainers; [ buffet nickcao ];
};
})