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: 94aa75c2c9d4
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 772e2aa94bd4
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Sep 6, 2019

  1. Copy the full SHA
    772e2aa View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/misc/cups/default.nix
4 changes: 2 additions & 2 deletions pkgs/misc/cups/default.nix
Original file line number Diff line number Diff line change
@@ -12,15 +12,15 @@ stdenv.mkDerivation rec {
pname = "cups";

# After 2.2.6, CUPS requires headers only available in macOS 10.12+
version = if stdenv.isDarwin then "2.2.6" else "2.2.11";
version = if stdenv.isDarwin then "2.2.6" else "2.2.12";

passthru = { inherit version; };

src = fetchurl {
url = "https://github.com/apple/cups/releases/download/v${version}/cups-${version}-source.tar.gz";
sha256 = if version == "2.2.6"
then "16qn41b84xz6khrr2pa2wdwlqxr29rrrkjfi618gbgdkq9w5ff20"
else "0v5p10lyv8wv48s8ghkhjmdrxg6iwj8hn36v1ilkz46n7y0i107m";
else "1a4sgx5y7z16flmpnchd2ix294bnzy0v8mdkd96a4j27kr2anq8g";
};

outputs = [ "out" "lib" "dev" "man" ];