3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #206312 from figsoda/nix-update

nix-update: 0.10.0 -> 0.11.0, add figsoda as a maintainer
This commit is contained in:
figsoda 2022-12-16 09:38:22 -05:00 committed by GitHub
commit 20620ad867
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,14 +8,14 @@
buildPythonApplication rec {
pname = "nix-update";
version = "0.10.0";
version = "0.11.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "Mic92";
repo = pname;
rev = version;
sha256 = "sha256-BChN92gZ1Ga7hIPWmdzkrg31S0iqWwXGkWb3mmRugY8=";
sha256 = "sha256-nBLNMQKLgx5m5VyxTdSLBE9kNhUPdaRzVi5BQx83m+4=";
};
makeWrapperArgs = [
@ -29,8 +29,9 @@ buildPythonApplication rec {
meta = with lib; {
description = "Swiss-knife for updating nix packages";
inherit (src.meta) homepage;
changelog = "https://github.com/Mic92/nix-update/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ mic92 zowoq ];
maintainers = with maintainers; [ figsoda mic92 zowoq ];
platforms = platforms.all;
};
}