Unverified Commit 444752ec authored by Jörg Thalheim's avatar Jörg Thalheim Committed by GitHub
Browse files

nix-update: 1.10.0 -> 1.11.0 (#396045)

parents f6615dc1 991ddfeb
Loading
Loading
Loading
Loading
+48 −50
Original line number Diff line number Diff line
@@ -6,19 +6,19 @@
  nix-prefetch-git,
  nixpkgs-review,
  python3Packages,
  nix-update,
}:

let
  self = python3Packages.buildPythonApplication {
python3Packages.buildPythonApplication rec {
  pname = "nix-update";
    version = "1.10.0";
  version = "1.11.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "Mic92";
    repo = "nix-update";
      tag = self.version;
      hash = "sha256-fGs/EdCEoDA9N5gPtHU6CaDZo9e/aqW6pm6atsjK7PI=";
    tag = version;
    hash = "sha256-G5YehePEMhTgxCnLp8Dg+bDHvOe+QltlCkQHVwMtYx0=";
  };

  build-system = [ python3Packages.setuptools ];
@@ -43,13 +43,13 @@ let
  '';

  passthru = {
      nix-update-script = callPackage ./nix-update-script.nix { nix-update = self; };
    nix-update-script = callPackage ./nix-update-script.nix { inherit nix-update; };
  };

  meta = {
    description = "Swiss-knife for updating nix packages";
    homepage = "https://github.com/Mic92/nix-update/";
      changelog = "https://github.com/Mic92/nix-update/releases/tag/${self.version}";
    changelog = "https://github.com/Mic92/nix-update/releases/tag/${version}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [
      figsoda
@@ -57,6 +57,4 @@ let
    ];
    mainProgram = "nix-update";
  };
  };
in
self
}