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: 7e2eb7240793
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: eb2a26f5c61e
Choose a head ref
  • 8 commits
  • 7 files changed
  • 5 contributors

Commits on Mar 7, 2019

  1. Copy the full SHA
    7ec3142 View commit details

Commits on Mar 10, 2019

  1. gcompris: 0.95 -> 0.96

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/gcompris/versions
    r-ryantm committed Mar 10, 2019
    Copy the full SHA
    3bf3a1a View commit details

Commits on Mar 11, 2019

  1. Merge pull request #57240 from r-ryantm/auto-update/gcompris

    gcompris: 0.95 -> 0.96
    ryantm authored Mar 11, 2019
    Copy the full SHA
    8bb3919 View commit details
  2. fix two typos in "substituteInPlace" that should never landed

    I am not sure how these two could ever work but at least the typo is
    fixed now. They still fail to compile but that is a different issue.
    andir committed Mar 11, 2019
    Copy the full SHA
    48b9a4a View commit details
  3. plantuml: 1.2019.1 -> 1.2019.2

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/plantuml/versions
    r-ryantm authored and bjornfor committed Mar 11, 2019
    Copy the full SHA
    3a36b53 View commit details
  4. Merge pull request #57050 from dtzWill/update/m2crypto-0.32.0

    pythonPackages.m2crypto: 0.30.1 -> 0.32.0
    andir authored Mar 11, 2019
    Copy the full SHA
    2dd3253 View commit details
  5. wlroots: 0.4.1 -> 0.5.0

    primeos committed Mar 11, 2019
    Copy the full SHA
    7f43089 View commit details
  6. sway-beta: 1.0-rc5 -> 1.0

    primeos committed Mar 11, 2019
    Copy the full SHA
    eb2a26f View commit details
16 changes: 12 additions & 4 deletions pkgs/applications/window-managers/sway/beta.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub
{ stdenv, fetchFromGitHub, fetchpatch
, meson, ninja
, pkgconfig, scdoc
, wayland, libxkbcommon, pcre, json_c, dbus, libevdev
@@ -10,17 +10,25 @@
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "sway";
version = "1.0-rc5";
version = "1.0";

src = fetchFromGitHub {
owner = "swaywm";
repo = "sway";
rev = version;
sha256 = "1jkacibmxy9rpq5mxnq7bkwcy0c592zk4vf20j5qbbljp9h7c87i";
sha256 = "09cndc2nl39d3l7g5634xp0pxcz60pvc5277mfw89r22mh0j78rx";
};

# TODO: The following patch introduced a compiler warning which leads to a
# build failure (we'll revert it for now as this patch is not supposed to
# change any functionality):
patch-remove-unused-functions = fetchpatch {
url = "https://github.com/swaywm/sway/commit/2b70e8518b7327d29eec4f9593e9b8f4238cebfe.patch";
sha256 = "1bq1i8dzxwckahzna6s9swvhpj1c1ics14pc1f1jcxwya50lk1rz";
};

postPatch = ''
sed -iE "s/version: '1.0',/version: '${version}',/" meson.build
patch -p1 --reverse < ${patch-remove-unused-functions}
'';

nativeBuildInputs = [
4 changes: 2 additions & 2 deletions pkgs/development/libraries/wlroots/default.nix
Original file line number Diff line number Diff line change
@@ -6,15 +6,15 @@

let
pname = "wlroots";
version = "0.4.1";
version = "0.5.0";
in stdenv.mkDerivation rec {
name = "${pname}-${version}";

src = fetchFromGitHub {
owner = "swaywm";
repo = "wlroots";
rev = version;
sha256 = "1624gasx8k0yy649d65ih4hs290szyxzd3bl0kg1l6njnhlxnr6b";
sha256 = "1phiidyddzgaxy4gbqwmykxn0y8za6y5mp66l9dpd9i6fml153yq";
};

# $out for the library, $bin for rootston, and $examples for the example
2 changes: 1 addition & 1 deletion pkgs/development/misc/stm32/betaflight/default.nix
Original file line number Diff line number Diff line change
@@ -33,7 +33,7 @@ in stdenv.mkDerivation rec {
sed -ri "s/REVISION.*=.*git log.*/REVISION = ${builtins.substring 0 10 src.rev}/" Makefile # Simulate abbrev'd rev.
sed -ri "s/binary hex/hex/" Makefile # No need for anything besides .hex
substitutateInPlace Makefile \
substituteInPlace Makefile \
--replace "--specs=nano.specs" ""
'';

2 changes: 1 addition & 1 deletion pkgs/development/misc/stm32/inav/default.nix
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ in stdenv.mkDerivation rec {
sed -ri "s/-j *[0-9]+//" Makefile # Eliminate parallel build args in submakes
sed -ri "s/binary hex/hex/" Makefile # No need for anything besides .hex
substitutateInPlace Makefile \
substituteInPlace Makefile \
--replace "--specs=nano.specs" ""
'';

6 changes: 3 additions & 3 deletions pkgs/development/python-modules/m2crypto/default.nix
Original file line number Diff line number Diff line change
@@ -9,12 +9,12 @@


buildPythonPackage rec {
version = "0.30.1";
version = "0.32.0";
pname = "M2Crypto";

src = fetchPypi {
inherit pname version;
sha256 = "a1b2751cdadc6afac3df8a5799676b7b7c67a6ad144bb62d38563062e7cd3fc6";
sha256 = "09d3zs2ivyxbi0fa42mnan0fcplc08q2qd70p1b43sxxdbxcdj99";
};

patches = [
@@ -38,7 +38,7 @@ buildPythonPackage rec {

meta = with stdenv.lib; {
description = "A Python crypto and SSL toolkit";
homepage = http://chandlerproject.org/Projects/MeTooCrypto;
homepage = https://gitlab.com/m2crypto/m2crypto;
license = licenses.mit;
maintainers = with maintainers; [ andrew-d ];
};
4 changes: 2 additions & 2 deletions pkgs/games/gcompris/default.nix
Original file line number Diff line number Diff line change
@@ -2,12 +2,12 @@
gst_all_1, ninja
}:
stdenv.mkDerivation rec {
version = "0.95";
version = "0.96";
name = "gcompris-${version}";

src = fetchurl {
url = "http://gcompris.net/download/qt/src/gcompris-qt-${version}.tar.xz";
sha256 = "1aaijjx2b7k1cyx59jhs64hlp1sppw1faa81qxl5lxc79vifrlrl";
sha256 = "06483il59l46ny2w771sg45dgzjwv1ph7vidzzbj0wb8wbk2rg52";
};

cmakeFlags = "-DQML_BOX2D_LIBRARY=${qmlbox2d}/${qtbase.qtQmlPrefix}/Box2D.2.0";
4 changes: 2 additions & 2 deletions pkgs/tools/misc/plantuml/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, makeWrapper, jre, graphviz }:

stdenv.mkDerivation rec {
version = "1.2019.1";
version = "1.2019.2";
name = "plantuml-${version}";

src = fetchurl {
url = "mirror://sourceforge/project/plantuml/${version}/plantuml.${version}.jar";
sha256 = "1prbb5c8y44p1x7vj4lpap2gbxd9bavbgvi6p7zw6nb0lfral6vg";
sha256 = "17b9nwj0r4nbajql611lhy1kkgzigq8p8hkyv90psm7avwyd7fk2";
};

nativeBuildInputs = [ makeWrapper ];