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: 11c84a902ef9
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: e2bb73ce5f78
Choose a head ref
  • 6 commits
  • 6 files changed
  • 2 contributors

Commits on Jun 6, 2020

  1. borgbackup: 1.1.11 -> 1.1.13

    (cherry picked from commit 7fb84ea)
    mweinelt committed Jun 6, 2020
    Copy the full SHA
    6956305 View commit details

Commits on Jun 7, 2020

  1. Copy the full SHA
    3154bb9 View commit details
  2. Copy the full SHA
    cc28f9c View commit details
  3. dlib: 19.19 -> 19.20

    Ma27 committed Jun 7, 2020
    Copy the full SHA
    7a7fcac View commit details
  4. Copy the full SHA
    f8463ef View commit details
  5. Merge pull request #89681 from mweinelt/20.03/borgbackup

    [20.03] borgbackup: 1.1.11 -> 1.1.13
    Ma27 authored Jun 7, 2020
    Copy the full SHA
    e2bb73c View commit details
16 changes: 12 additions & 4 deletions pkgs/applications/window-managers/i3/status-rust.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,25 @@
{ stdenv, rustPlatform, fetchFromGitHub, pkgconfig, dbus, libpulseaudio }:
{ stdenv, rustPlatform, fetchFromGitHub, pkgconfig, dbus, libpulseaudio, fetchpatch }:

rustPlatform.buildRustPackage rec {
pname = "i3status-rust";
version = "0.13.1";
version = "0.14.0";

src = fetchFromGitHub {
owner = "greshake";
repo = pname;
rev = "v${version}";
sha256 = "0va6ny1v7lk30hhx4i5qyk9fwg3apy2nmh6kbmxhcf0rs5449ikg";
sha256 = "0d2xigm932x6pc9z24g5cg8xq2crd9n3wq1bwi96h35w799lagjg";
};

cargoSha256 = "099hn0pm9ppply3m3dwns3f5p43rdag2d3niaj8jyc1mnavviwjv";
cargoPatches = [
# https://github.com/greshake/i3status-rust/pull/732/ (Update Cargo.lock)
(fetchpatch {
url = "https://github.com/greshake/i3status-rust/commit/7762a5c7ad668272fb8bb8409f12242094b032b8.patch";
sha256 = "097f6w91cn53cj1g3bbdqm9jjib5fkb3id91jqvq88h43x14b8zb";
})
];

cargoSha256 = "098d08likpnycfb32s83vp0bphxf27k1gfcc26721fc9c8ah0lah";

nativeBuildInputs = [ pkgconfig ];

4 changes: 2 additions & 2 deletions pkgs/development/libraries/dlib/default.nix
Original file line number Diff line number Diff line change
@@ -7,13 +7,13 @@

stdenv.mkDerivation rec {
pname = "dlib";
version = "19.19";
version = "19.20";

src = fetchFromGitHub {
owner = "davisking";
repo = "dlib";
rev ="v${version}";
sha256 = "0574p46zf85nx33cam4yqcg20g94kkmrvi5689r1xshprr0szghp";
sha256 = "10b5hrprlls0nhljx18ys8cms7bgqirvhxlx6gbvbprbi6q16f9r";
};

postPatch = ''
124 changes: 72 additions & 52 deletions pkgs/development/tools/rust/cargo-make/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading