Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e1605d9b21b9
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2c9265c95075
Choose a head ref
  • 6 commits
  • 6 files changed
  • 5 contributors

Commits on Sep 30, 2018

  1. gdal: 2.3.1 -> 2.3.2

    mpickering committed Sep 30, 2018
    Copy the full SHA
    f80730d View commit details

Commits on Oct 2, 2018

  1. onestepback: 0.98 -> 0.991

    - Update to version 0.991
    - Add color variants of the theme
    - Change home page
    romildo committed Oct 2, 2018
    Copy the full SHA
    2041c53 View commit details
  2. Merge pull request #47641 from romildo/upd.onestepback

    onestepback: 0.98 -> 0.991
    srhb authored Oct 2, 2018
    Copy the full SHA
    c710240 View commit details
  3. Merge pull request #47565 from mpickering/gdal-2.3.2

    gdal: 2.3.1 -> 2.3.2
    srhb authored Oct 2, 2018
    Copy the full SHA
    baacbcd View commit details
  4. nwjs-sdk: init at 0.33.4 (#45320)

    yrashk authored and xeji committed Oct 2, 2018
    Copy the full SHA
    34f2009 View commit details
  5. nix: 2.1.2 -> 2.1.3

    edolstra committed Oct 2, 2018
    Copy the full SHA
    2c9265c View commit details
8 changes: 4 additions & 4 deletions nixos/modules/installer/tools/nix-fallback-paths.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
x86_64-linux = "/nix/store/mxg4bbblxfns96yrz0nalxyiyjl7gj98-nix-2.1.2";
i686-linux = "/nix/store/bgjgmbwirx63mwwychpikd7yc4k4lbjv-nix-2.1.2";
aarch64-linux = "/nix/store/yi18azn4nwrcwvaiag04jnxc1qs38fy5-nix-2.1.2";
x86_64-darwin = "/nix/store/fpivmcck2qpw5plrp599iraw2x9jp18k-nix-2.1.2";
x86_64-linux = "/nix/store/cdcia67siabmj6li7vyffgv2cry86fq8-nix-2.1.3";
i686-linux = "/nix/store/6q3xi6y5qnsv7d62b8n00hqfxi8rs2xs-nix-2.1.3";
aarch64-linux = "/nix/store/2v93d0vimlm28jg0ms6v1i6lc0fq13pn-nix-2.1.3";
x86_64-darwin = "/nix/store/dkjlfkrknmxbjmpfk3dg4q3nmb7m3zvk-nix-2.1.3";
}
4 changes: 2 additions & 2 deletions pkgs/development/libraries/gdal/default.nix
Original file line number Diff line number Diff line change
@@ -9,11 +9,11 @@ with stdenv.lib;

stdenv.mkDerivation rec {
name = "gdal-${version}";
version = "2.3.1";
version = "2.3.2";

src = fetchurl {
url = "https://download.osgeo.org/gdal/${version}/${name}.tar.xz";
sha256 = "0nkjnznrp7dr41zsh8j923c9zpc3i5vj3wjfc2df9rrybb22ailw";
sha256 = "191jknma0vricrgdcdmwh8588rwly6a77lmynypxdl87i3z7hv9z";
};

buildInputs = [ unzip libjpeg libtiff libpng proj openssl sqlite
16 changes: 12 additions & 4 deletions pkgs/development/tools/nwjs/default.nix
Original file line number Diff line number Diff line change
@@ -5,6 +5,8 @@
, libnotify
, ffmpeg, libxcb, cups
, sqlite, udev
, libuuid
, sdk ? false
}:
let
bits = if stdenv.hostPlatform.system == "x86_64-linux" then "x64"
@@ -23,20 +25,26 @@ let
ffmpeg libxcb
# chromium runtime deps (dlopen’d)
sqlite udev
libuuid
];

extraOutputsToInstall = [ "lib" "out" ];
};

in stdenv.mkDerivation rec {
name = "nwjs-${version}";
version = "0.32.4";
version = "0.33.4";

src = fetchurl {
src = if sdk then fetchurl {
url = "https://dl.nwjs.io/v${version}/nwjs-sdk-v${version}-linux-${bits}.tar.gz";
sha256 = if bits == "x64" then
"1hi6xispxvyb6krm5j11mv8509dwpw5ikpbkvq135gsk3gm29c9y" else
"00p4clbfinrj5gp2i84a263l3h00z8g7mnx61qwmr0z02kvswz9s";
} else fetchurl {
url = "https://dl.nwjs.io/v${version}/nwjs-v${version}-linux-${bits}.tar.gz";
sha256 = if bits == "x64" then
"0hzyiy6sbbjll1b946y3v7bv6sav3rhy4c48d4vcvamyv9pkfn45" else
"0a3b712abfa0c3e7e808b1d08ea5d53375a71060e7d144fdcb58c4fe88fa2250";
"09zd6gja3l20xx03h2gawpmh9f8nxqjp8qdkds5nz9kbbckhkj52" else
"0nlpdz76k1p1pq4xygfr2an91m0d7p5fjyg2xhiggyy8b7sp4964";
};

phases = [ "unpackPhase" "installPhase" ];
38 changes: 26 additions & 12 deletions pkgs/misc/themes/onestepback/default.nix
Original file line number Diff line number Diff line change
@@ -1,23 +1,37 @@
{ stdenv, fetchzip }:
{ stdenv, fetchurl, unzip }:

let
version = "0.98";

in fetchzip {
stdenv.mkDerivation rec {
name = "onestepback-${version}";
version = "0.991";

url = "http://www.vide.memoire.free.fr/perso/OneStepBack/OneStepBack-v${version}.zip";
srcs = [
(fetchurl {
url = "http://www.vide.memoire.free.fr/perso/OneStepBack/OneStepBack-v${version}.zip";
sha256 = "1jfgcgzbb6ra9qs3zcp6ij0hfldzg3m0yjw6l6vf4kq1mdby1ghm";
})
(fetchurl {
url = "http://www.vide.memoire.free.fr/perso/OneStepBack/OneStepBack-grey-brown-green-blue-v${version}.zip";
sha256 = "0i006h1asbpfdzajws0dvk9acplvcympzgxq5v3n8hmizd6yyh77";
})
(fetchurl {
url = "http://www.vide.memoire.free.fr/perso/OneStepBack/OneStepBack-green-brown-v${version}.zip";
sha256 = "16p002lak6425gcskny4hzws8x9dgsm6j3a1r08y11rsz7d2hnmy";
})
];

postFetch = ''
mkdir -p $out/share/themes
unzip $downloadedFile -x OneStepBack/LICENSE -d $out/share/themes
'';
nativeBuildInputs = [ unzip ];

sha256 = "0sjacvx7020lzc89r5310w83wclw96gzzczy3mss54ldkgmnd0mr";
sourceRoot = ".";

installPhase = ''
mkdir -p $out/share/themes
cp -a OneStepBack* $out/share/themes/
rm $out/share/themes/*/{LICENSE,README*}
'';

meta = with stdenv.lib; {
description = "Gtk theme inspired by the NextStep look";
homepage = https://www.opendesktop.org/p/1013663/;
homepage = http://www.vide.memoire.free.fr/perso/OneStepBack;
license = licenses.gpl3;
platforms = platforms.all;
maintainers = [ maintainers.romildo ];
4 changes: 2 additions & 2 deletions pkgs/tools/package-management/nix/default.nix
Original file line number Diff line number Diff line change
@@ -148,10 +148,10 @@ in rec {
}) // { perl-bindings = nix1; };

nixStable = (common rec {
name = "nix-2.1.2";
name = "nix-2.1.3";
src = fetchurl {
url = "http://nixos.org/releases/nix/${name}/${name}.tar.xz";
sha256 = "68e55382dac9e66f84ead69b3c786a4ea85d4a6611a7a740aa0b78fcc85db3ec";
sha256 = "5d22dad058d5c800d65a115f919da22938c50dd6ba98c5e3a183172d149840a4";
};
}) // { perl-bindings = perl-bindings {
nix = nixStable;
5 changes: 5 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -8600,6 +8600,11 @@ with pkgs;
gconf = pkgs.gnome2.GConf;
};

nwjs-sdk = callPackage ../development/tools/nwjs {
gconf = pkgs.gnome2.GConf;
sdk = true;
};

# only kept for nixui, see https://github.com/matejc/nixui/issues/27
nwjs_0_12 = callPackage ../development/tools/node-webkit/nw12.nix {
gconf = pkgs.gnome2.GConf;