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: 3ecb13877046
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: 47d1cd332cfc
Choose a head ref

Commits on May 5, 2020

  1. gitkraken: 6.5.4 -> 6.6.0

    r-ryantm committed May 5, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Ma27 Maximilian Bosch
    Copy the full SHA
    8244a7b View commit details

Commits on May 9, 2020

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    NeQuissimus Tim Steinbach
    Copy the full SHA
    11fa2d4 View commit details
  2. nordic: 1.8.1 -> 1.9.0

    romildo committed May 9, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    NeQuissimus Tim Steinbach
    Copy the full SHA
    c2dfe11 View commit details
  3. nordic-polar: 1.6.0 -> 1.9.0

    romildo committed May 9, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    NeQuissimus Tim Steinbach
    Copy the full SHA
    ae20433 View commit details
  4. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    NeQuissimus Tim Steinbach
    Copy the full SHA
    3cb8917 View commit details

Commits on May 10, 2020

  1. scala: 2.13.1 -> 2.13.2

    r-ryantm committed May 10, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    NeQuissimus Tim Steinbach
    Copy the full SHA
    37cf3a6 View commit details
  2. fatsort: 1.5.0.456 -> 1.6.2.605

    The patch to set PREFIX needed updating to apply. Rewrite it in a way
    that allows submitting upstream. That means we don't hardcode
    PREFIX=$out inside the patch but allow the PREFIX to be passed to make
    at build time.
    bjornfor committed May 10, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    NeQuissimus Tim Steinbach
    Copy the full SHA
    66f90b8 View commit details
  3. termdown: 1.16.0 -> 1.17.0

    r-ryantm authored and marsam committed May 10, 2020
    Copy the full SHA
    5ce6802 View commit details
  4. unionfs-fuse: 2.0 -> 2.1

    r-ryantm committed May 10, 2020
    Copy the full SHA
    826d4e8 View commit details
  5. testssl: 3.0 -> 3.0.1

    r-ryantm committed May 10, 2020
    Copy the full SHA
    183378d View commit details
  6. Merge pull request #87534 from bjornfor/update-fatsort

    fatsort: 1.5.0.456 -> 1.6.2.605
    marsam authored May 10, 2020
    Copy the full SHA
    830711d View commit details
  7. Merge pull request #87535 from r-ryantm/auto-update/termdown

    termdown: 1.16.0 -> 1.17.0
    marsam authored May 10, 2020
    Copy the full SHA
    a5c51cf View commit details
  8. Merge pull request #87370 from Mic92/radare2

    radare2-cutter: 1.10.2 -> 1.10.3
    Ma27 authored May 10, 2020
    Copy the full SHA
    d232eb1 View commit details
  9. Merge pull request #87480 from r-ryantm/auto-update/scala

    scala: 2.13.1 -> 2.13.2
    Ma27 authored May 10, 2020
    Copy the full SHA
    3d941ff View commit details
  10. Merge pull request #87444 from romildo/upd.nordic

    nordic: 1.8.1 -> 1.9.0
    romildo authored May 10, 2020
    Copy the full SHA
    bf093b6 View commit details
  11. Merge pull request #87445 from romildo/upd.nordic-polar

    nordic-polar: 1.6.0 -> 1.9.0
    romildo authored May 10, 2020
    Copy the full SHA
    bb80d26 View commit details
  12. Merge pull request #87448 from romildo/upd.shades-of-gray-theme

    shades-of-gray-theme: 1.2.1 -> 1.3.0
    romildo authored May 10, 2020
    Copy the full SHA
    683c682 View commit details

Commits on May 11, 2020

  1. Copy the full SHA
    0d64dc6 View commit details
  2. Copy the full SHA
    fabb464 View commit details
  3. Merge pull request #86893 from r-ryantm/auto-update/gitkraken

    gitkraken: 6.5.4 -> 6.6.0
    ryantm authored May 11, 2020
    Copy the full SHA
    b970793 View commit details
  4. Copy the full SHA
    a133193 View commit details
  5. Merge pull request #87552 from r-ryantm/auto-update/testssl.sh

    testssl: 3.0 -> 3.0.1
    etu authored May 11, 2020
    Copy the full SHA
    47d1cd3 View commit details
4 changes: 2 additions & 2 deletions pkgs/applications/editors/rednotebook/default.nix
Original file line number Diff line number Diff line change
@@ -5,13 +5,13 @@

buildPythonApplication rec {
pname = "rednotebook";
version = "2.18";
version = "2.19";

src = fetchFromGitHub {
owner = "jendrikseipp";
repo = "rednotebook";
rev = "v${version}";
sha256 = "1m75ns6vgycyi3zjlc9w2gnry1gyfz1jxhrklcxxi6aap0jxlgnr";
sha256 = "1y5slcwgs6p5n52whhhjg0c7053688311wnc9wqrk7vjk10qkx9d";
};

# We have not packaged tests.
32 changes: 17 additions & 15 deletions pkgs/applications/misc/termdown/default.nix
Original file line number Diff line number Diff line change
@@ -1,27 +1,29 @@
{ stdenv, fetchFromGitHub, buildPythonApplication,
click, pyfiglet, dateutil}:

with stdenv.lib;
{ stdenv
, fetchFromGitHub
, buildPythonApplication
, click
, pyfiglet
, dateutil
, setuptools
}:

buildPythonApplication rec {

pname = "termdown";
version = "1.16.0";
version = "1.17.0";

src = fetchFromGitHub {
rev = version;
sha256 = "0k429ss1xifm9vbgyzpp71r79byn9jclvr0rm77bai2r8nz3s2vf";
repo = "termdown";
owner = "trehn";
rev = version;
sha256 = "1sd9z5n2a4ir35832wgxs68vwav7wxhq39b5h8pq934mp8sl3v2k";
repo = "termdown";
owner = "trehn";
};

propagatedBuildInputs = [ dateutil click pyfiglet ];
propagatedBuildInputs = [ dateutil click pyfiglet setuptools ];

meta = with stdenv.lib; {
description = "Starts a countdown to or from TIMESPEC";
description = "Starts a countdown to or from TIMESPEC";
longDescription = "Countdown timer and stopwatch in your terminal";
homepage = "https://github.com/trehn/termdown";
license = licenses.gpl3;
platforms = platforms.all;
homepage = "https://github.com/trehn/termdown";
license = licenses.gpl3;
};
}
4 changes: 2 additions & 2 deletions pkgs/applications/networking/testssl/default.nix
Original file line number Diff line number Diff line change
@@ -3,13 +3,13 @@

stdenv.mkDerivation rec {
pname = "testssl.sh";
version = "3.0";
version = "3.0.1";

src = fetchFromGitHub {
owner = "drwetter";
repo = pname;
rev = version;
sha256 = "08i1l835zlzb3qmsnsd5vhsrr82li6fnp5jqxiybbqr5wjz67ssd";
sha256 = "13vvkn1hna1d1mj8ffg7psrv6ha2jcjrf50qrsb0v0p8hszibavy";
};

nativeBuildInputs = [ makeWrapper ];
4 changes: 2 additions & 2 deletions pkgs/applications/version-management/gitkraken/default.nix
Original file line number Diff line number Diff line change
@@ -13,11 +13,11 @@ let
in
stdenv.mkDerivation rec {
pname = "gitkraken";
version = "6.5.4";
version = "6.6.0";

src = fetchzip {
url = "https://release.axocdn.com/linux/GitKraken-v${version}.tar.gz";
sha256 = "0hrxkhxp6kp82jg1pkcl6vxa5mjpgncx0k353bcnm4986ysizhj4";
sha256 = "1k94dyynsnm90mp7q9h6baq6q9zi539b1qszf3mqvd5i0id9kjcw";
};

dontBuild = true;
6 changes: 3 additions & 3 deletions pkgs/data/themes/nordic-polar/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

stdenv.mkDerivation rec {
pname = "nordic-polar";
version = "1.6.0";
version = "1.9.0";

srcs = [
(fetchurl {
url = "https://github.com/EliverLara/Nordic-Polar/releases/download/v${version}/Nordic-Polar.tar.xz";
sha256 = "0cym8rcg8jpfraqlfrmymkm0jrsk1s9p7z6vcil4vxbyim9q9w16";
sha256 = "1583mx8frkl5w26myczbyrggrp07lmpsfj00h1bzicw6lz8jbxf1";
})
(fetchurl {
url = "https://github.com/EliverLara/Nordic-Polar/releases/download/v${version}/Nordic-Polar-standard-buttons.tar.xz";
sha256 = "0s4wf9nqpa75km905jh03gl2d2hjcdvfacmkdz3njviqm6pwqxsv";
sha256 = "1n2qys0xcg1k28bwfrrr44cqz7q2rnfj6ry6qgd67ivgh63kmcq6";
})
];

26 changes: 13 additions & 13 deletions pkgs/data/themes/nordic/default.nix
Original file line number Diff line number Diff line change
@@ -2,32 +2,32 @@

stdenv.mkDerivation rec {
pname = "nordic";
version = "1.8.1";
version = "1.9.0";

srcs = [
(fetchurl {
url = "https://github.com/EliverLara/Nordic/releases/download/V${version}/Nordic.tar.xz";
sha256 = "0jvc6l093gj9azkrjswdc1kqlyc6drnhsxgpzylzcgjxvxyi9vmd";
url = "https://github.com/EliverLara/Nordic/releases/download/v${version}/Nordic.tar.xz";
sha256 = "12x13h9w4yqk56a009zpj1kq3vn2hn290xryfv1b0vyf2r45rsn7";
})
(fetchurl {
url = "https://github.com/EliverLara/Nordic/releases/download/V${version}/Nordic-standard-buttons.tar.xz";
sha256 = "049hcvccjds465v78sk3cjg7zck36l1zpyrf4p8xinj2h3b74zr8";
url = "https://github.com/EliverLara/Nordic/releases/download/v${version}/Nordic-standard-buttons.tar.xz";
sha256 = "0f38nx1rvp9l6xz62yx6cbab4im8d425gxr52jkc8gfqpl5lrf0q";
})
(fetchurl {
url = "https://github.com/EliverLara/Nordic/releases/download/V${version}/Nordic-darker.tar.xz";
sha256 = "1qaj4x451ic8mx4aak1axw29jm6ymwgh5w3n3mw5kjm1fwg4b5dz";
url = "https://github.com/EliverLara/Nordic/releases/download/v${version}/Nordic-darker.tar.xz";
sha256 = "0frp0jf7hbiapl3m67av7rbm3sx8db52zi3j01k2hysh6kba7x33";
})
(fetchurl {
url = "https://github.com/EliverLara/Nordic/releases/download/V${version}/Nordic-darker-standard-buttons.tar.xz";
sha256 = "19wczzppimp7sql9v0sq1sc5j0ix51270c58j22mg01kd2h2iivy";
url = "https://github.com/EliverLara/Nordic/releases/download/v${version}/Nordic-darker-standard-buttons.tar.xz";
sha256 = "0grfsjr9kq0lszmqxvjvpgvf4avm34446nqykz1zfpdg50j7r54b";
})
(fetchurl {
url = "https://github.com/EliverLara/Nordic/releases/download/V${version}/Nordic-bluish-accent.tar.xz";
sha256 = "1jvjjxiz8q9583f3gidky65s2g5pd5bkvbx0jvwn0p0kz8vlzmzk";
url = "https://github.com/EliverLara/Nordic/releases/download/v${version}/Nordic-bluish-accent.tar.xz";
sha256 = "0zndldwavir22ay2r0jazpikzzww3hc09gsmbiyjmw54v29qhl9r";
})
(fetchurl {
url = "https://github.com/EliverLara/Nordic/releases/download/V${version}/Nordic-bluish-accent-standard-buttons.tar.xz";
sha256 = "0wqn0aszddq8nbh6c667rwhy7c1zky23a9q3d8gci421n20l6lyd";
url = "https://github.com/EliverLara/Nordic/releases/download/v${version}/Nordic-bluish-accent-standard-buttons.tar.xz";
sha256 = "1b9d2fvdndyh7lh3xhmc75csfbapl4gv59y7wy15k2awisvlvz07";
})
];

4 changes: 2 additions & 2 deletions pkgs/data/themes/shades-of-gray/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

stdenv.mkDerivation rec {
pname = "shades-of-gray-theme";
version = "1.2.1";
version = "1.3.0";

src = fetchFromGitHub {
owner = "WernerFP";
repo = pname;
rev = version;
sha256 = "153isyxly7nvivaz87zk2v1bqzcb3wk0j9vhgxzcz6qkf754q61s";
sha256 = "13ydym0i3032g5dyrnl5wxpvxv57b43q7iaq5achpmaixgn58gs8";
};

buildInputs = [ gtk_engines ];
4 changes: 2 additions & 2 deletions pkgs/development/compilers/scala/2.13.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, makeWrapper, jre, gnugrep, coreutils }:

stdenv.mkDerivation rec {
name = "scala-2.13.1";
name = "scala-2.13.2";

src = fetchurl {
url = "https://www.scala-lang.org/files/archive/${name}.tgz";
sha256 = "1nq49acx3j6vnw0lhyrfqa23f671y3kc9lja4nki0j73jk2cq639";
sha256 = "1gvdxwlhgjmn8i5a8kcp19700rscjq9ylb35p8vj7nqys94zjkap";
};

propagatedBuildInputs = [ jre ] ;
4 changes: 2 additions & 2 deletions pkgs/development/tools/analysis/radare2/cutter.nix
Original file line number Diff line number Diff line change
@@ -10,13 +10,13 @@

stdenv.mkDerivation rec {
pname = "radare2-cutter";
version = "1.10.2";
version = "1.10.3";

src = fetchFromGitHub {
owner = "radareorg";
repo = "cutter";
rev = "v${version}";
sha256 = "1icv56gxpzdjqn37pk3g99vgpljdc77i6k0x601iw2885s7s01n6";
sha256 = "0qj8jyij02nif4jpirl09ygwnv8a9zi3vkb5sf5s8mg7qwlpnvyk";
};

postUnpack = "export sourceRoot=$sourceRoot/src";
12 changes: 6 additions & 6 deletions pkgs/development/tools/analysis/radare2/default.nix
Original file line number Diff line number Diff line change
@@ -120,12 +120,12 @@ in {
cs_sha256 = "0ijwxxk71nr9z91yxw20zfj4bbsbrgvixps5c7cpj163xlzlwba6";
};
r2-for-cutter = generic {
version_commit = "24545";
gittap = "4.3.1";
gittip = "e7f940d27b3b4eb2738afef78a6ea09ed770318c";
rev = "e7f940d27b3b4eb2738afef78a6ea09ed770318c";
version = "2020-03-05";
sha256 = "0fiy6aj8xf9anpkk2vpkx8x0m2f26rhjb92nmg61xj13dmhchh30";
version_commit = "24605";
gittap = "4.4.0";
gittip = "9ea0b7ce566cfdcfb3513f407c4056915204294a";
rev = "9ea0b7ce566cfdcfb3513f407c4056915204294a";
version = "2020-04-14";
sha256 = "0gwdnrnk7wdgkajp2qwg4fyplh7nsbmf01bzx07px6xmiscd9z2s";
cs_ver = "4.0.1";
cs_sha256 = "0ijwxxk71nr9z91yxw20zfj4bbsbrgvixps5c7cpj163xlzlwba6";
};
6 changes: 4 additions & 2 deletions pkgs/tools/filesystems/fatsort/default.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
{stdenv, fetchurl, help2man}:

stdenv.mkDerivation rec {
version = "1.5.0.456";
version = "1.6.2.605";
pname = "fatsort";

src = fetchurl {
url = "mirror://sourceforge/fatsort/${pname}-${version}.tar.xz";
sha256 = "15fy2m4p9s8cfvnzdcd5ynkc2js0zklkkf34sjxdac7x2iwb8dd8";
sha256 = "1dzzsl3a1ampari424vxkma0i87qkbgkgm2169x9xf3az0vgmjh8";
};

patches = [ ./fatsort-Makefiles.patch ];

buildInputs = [ help2man ];

makeFlags = [ "PREFIX=${placeholder "out"}" ];

meta = with stdenv.lib; {
homepage = "http://fatsort.sourceforge.net/";
description = "Sorts FAT partition table, for devices that don't do sorting of files";
49 changes: 26 additions & 23 deletions pkgs/tools/filesystems/fatsort/fatsort-Makefiles.patch
Original file line number Diff line number Diff line change
@@ -1,31 +1,34 @@
diff -uNr fatsort-1.3.365-a/Makefile fatsort-1.3.365-b/Makefile
--- fatsort-1.3.365-a/Makefile 2014-04-08 19:19:36.000000000 +0100
+++ fatsort-1.3.365-b/Makefile 2014-12-14 18:31:55.982857720 +0000
diff -uNr fatsort-1.6.2.605.orig/Makefile fatsort-1.6.2.605.new/Makefile
--- fatsort-1.6.2.605.orig/Makefile 2019-11-16 16:40:27.000000000 +0100
+++ fatsort-1.6.2.605.new/Makefile 2020-05-10 21:34:34.820874026 +0200
@@ -1,4 +1,5 @@
-MANDIR=/usr/local/share/man/man1
+PREFIX=$(out)
+PREFIX?=/usr/local
+MANDIR=$(PREFIX)/share/man/man1

INSTALL_FLAGS=-m 0755 -p -D

diff -uNr fatsort-1.3.365-a/src/Makefile fatsort-1.3.365-b/src/Makefile
--- fatsort-1.3.365-a/src/Makefile 2014-04-08 19:19:36.000000000 +0100
+++ fatsort-1.3.365-b/src/Makefile 2014-12-14 18:32:08.282870461 +0000
@@ -1,3 +1,5 @@
+PREFIX=$(out)
+
CC=gcc
LD=gcc

@@ -33,9 +35,9 @@

# Mac OS X does not have a "/usr/local/sbin"
ifeq ($(UNAME),Darwin)
-SBINDIR=/usr/local/bin
+SBINDIR=$(PREFIX)/bin
diff -uNr fatsort-1.6.2.605.orig/src/Makefile fatsort-1.6.2.605.new/src/Makefile
--- fatsort-1.6.2.605.orig/src/Makefile 2018-11-17 00:40:59.000000000 +0100
+++ fatsort-1.6.2.605.new/src/Makefile 2020-05-10 21:33:52.053391027 +0200
@@ -30,7 +30,7 @@
override CFLAGS += -D __CYGWIN__
override CFLAGS += -D __LINUX__
override LDFLAGS += -liconv
- SBINDIR=/usr/local/sbin
+ SBINDIR=$(PREFIX)/sbin
endif
else
-SBINDIR=/usr/local/sbin
+SBINDIR=$(PREFIX)/sbin
ifdef MINGW
@@ -60,9 +60,9 @@
# OS X's install does not support the '-D' flag.
INSTALL_FLAGS=-m 0755 -p
# Mac OS X does not have a "/usr/local/sbin"
- SBINDIR=/usr/local/bin
+ SBINDIR=$(PREFIX)/bin
else
- SBINDIR=/usr/local/sbin
+ SBINDIR=$(PREFIX)/sbin
endif
endif
endif

OBJ=fatsort.o FAT_fs.o fileio.o endianness.o signal.o entrylist.o errors.o options.o clusterchain.o sort.o misc.o natstrcmp.o stringlist.o
6 changes: 3 additions & 3 deletions pkgs/tools/filesystems/tmsu/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, buildGoPackage, fetchgit, fetchFromGitHub, go, fuse, installShellFiles }:
{ stdenv, buildGoPackage, fetchFromGitHub, fuse, installShellFiles }:

buildGoPackage rec {
pname = "tmsu";
@@ -24,8 +24,8 @@ buildGoPackage rec {
'';

postInstall = ''
mv $bin/bin/{TMSU,tmsu}
cp src/misc/bin/* $bin/bin/
mv $out/bin/{TMSU,tmsu}
cp src/misc/bin/* $out/bin/
installManPage src/misc/man/tmsu.1
installShellCompletion --zsh src/misc/zsh/_tmsu
'';
4 changes: 2 additions & 2 deletions pkgs/tools/filesystems/unionfs-fuse/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

stdenv.mkDerivation rec {
pname = "unionfs-fuse";
version = "2.0";
version = "2.1";

src = fetchFromGitHub {
owner = "rpodgorny";
repo = "unionfs-fuse";
rev = "v${version}";
sha256 = "0lb8zgdxnjy2fjr2284hvdfn7inc1in44ynzgcr66x54bxzvynj6";
sha256 = "0bwx70x834qgqh53vqp18bhbxbsny80hz922rbgj8k9wj7cbfilm";
};

patches =
2 changes: 1 addition & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -22135,7 +22135,7 @@ in

tendermint = callPackage ../tools/networking/tendermint { };

termdown = (newScope pythonPackages) ../applications/misc/termdown { };
termdown = python3Packages.callPackage ../applications/misc/termdown { };

terminal-notifier = callPackage ../applications/misc/terminal-notifier {};