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: 9282ad68812c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2a28e657421b
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Mar 28, 2018

  1. nixops: update to 1.6

    rbvermaa committed Mar 28, 2018
    Copy the full SHA
    2a28e65 View commit details
Showing with 3 additions and 2 deletions.
  1. +2 −2 pkgs/tools/package-management/nixops/default.nix
  2. +1 −0 pkgs/tools/package-management/nixops/generic.nix
4 changes: 2 additions & 2 deletions pkgs/tools/package-management/nixops/default.nix
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{ callPackage, fetchurl }:

callPackage ./generic.nix (rec {
version = "1.5.2";
version = "1.6";
src = fetchurl {
url = "http://nixos.org/releases/nixops/nixops-${version}/nixops-${version}.tar.bz2";
sha256 = "00y2arc5rffvy6xmx4p6ibpjyc61k8dkiabq7ccwwjgckz1d2dpb";
sha256 = "0f8ql1a9maf9swl8q054b1haxqckdn78p2xgpwl7paxc98l67i7x";
};
})
1 change: 1 addition & 0 deletions pkgs/tools/package-management/nixops/generic.nix
Original file line number Diff line number Diff line change
@@ -25,6 +25,7 @@ python2Packages.buildPythonApplication {
pysqlite
datadog
digital-ocean
libvirt
];

doCheck = false;