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: e93a63bd30df
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: 4c8fd0e2eb9d
Choose a head ref
  • 14 commits
  • 6 files changed
  • 10 contributors

Commits on Jun 26, 2020

  1. python3Packages.mozfile: fix build

    Jonathan Ringer committed Jun 26, 2020
    Copy the full SHA
    ab7625d View commit details
  2. starship: install completions

    marsam committed Jun 26, 2020
    Copy the full SHA
    e9ee34c View commit details
  3. Copy the full SHA
    10d6387 View commit details
  4. mame: 0.221 -> 0.222

    gnidorah committed Jun 26, 2020
    Copy the full SHA
    349a264 View commit details
  5. lynis: 2.7.5 -> 3.0.0

    r-ryantm committed Jun 26, 2020
    Copy the full SHA
    e674498 View commit details
  6. prometheus: 2.19.1 -> 2.19.2

    Frostman committed Jun 26, 2020
    Copy the full SHA
    9967b80 View commit details

Commits on Jun 27, 2020

  1. starship: 0.42.0 -> 0.43.0

    marsam committed Jun 27, 2020
    Copy the full SHA
    43423a3 View commit details
  2. Merge pull request #91541 from jonringer/fix-mozfile

    python3Packages.mozfile: fix build
    7c6f434c authored Jun 27, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    equirosa Eduardo Quirós
    Copy the full SHA
    62c9cc8 View commit details
  3. Update pkgs/misc/emulators/mame/default.nix

    Fix hash
    
    Co-authored-by: Daniël de Kok <me@github.danieldk.eu>
    gnidorah and Daniël de Kok authored Jun 27, 2020
    Copy the full SHA
    bb0ec28 View commit details
  4. Merge pull request #91638 from Frostman/prom-2.19.2

    prometheus: 2.19.1 -> 2.19.2
    danieldk authored Jun 27, 2020
    Copy the full SHA
    29ec997 View commit details
  5. Merge pull request #91622 from r-ryantm/auto-update/lynis

    lynis: 2.7.5 -> 3.0.0
    danieldk authored Jun 27, 2020
    Copy the full SHA
    c6e52f2 View commit details
  6. Merge pull request #91618 from gnidorah/mame

    mame: 0.221 -> 0.222
    danieldk authored Jun 27, 2020
    Copy the full SHA
    5cee53c View commit details
  7. Merge pull request #91654 from marsam/update-starship

    starship: 0.42.0 -> 0.43.0
    teto authored Jun 27, 2020
    Copy the full SHA
    41219b9 View commit details
  8. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    4c8fd0e View commit details
10 changes: 5 additions & 5 deletions pkgs/applications/networking/feedreaders/newsboat/default.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{ stdenv, rustPlatform, fetchFromGitHub, stfl, sqlite, curl, gettext, pkgconfig, libxml2, json_c, ncurses
{ stdenv, rustPlatform, fetchFromGitHub, stfl, sqlite, curl, gettext, pkg-config, libxml2, json_c, ncurses
, asciidoctor, libiconv, Security, makeWrapper }:

rustPlatform.buildRustPackage rec {
pname = "newsboat";
version = "2.19";
version = "2.20.1";

src = fetchFromGitHub {
owner = "newsboat";
repo = "newsboat";
rev = "r${version}";
sha256 = "0yyrq8a90l6pkrczm9qvdg75jhsdq0niwp79vrdpm8rsxqpdmfq7";
sha256 = "1i9dpkdlsm3ya0w2x4c8kplrp3qzd8slbkcqvzfpqggb67gvczvv";
};

cargoSha256 = "1q3jf3d80c0ik38qk8jgbhfz5jxv0cy3lzmkyh2l002azp9hvv59";
cargoSha256 = "1ykffx2lhn4w56qm1wypkg9wsqpvzzrz419qkl95w1384xf3f7ix";

postPatch = ''
substituteInPlace Makefile --replace "|| true" ""
@@ -23,7 +23,7 @@ rustPlatform.buildRustPackage rec {
'';

nativeBuildInputs = [
pkgconfig
pkg-config
asciidoctor
gettext
] ++ stdenv.lib.optionals stdenv.isDarwin [ makeWrapper ncurses ];
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, six
}:

@@ -14,7 +13,7 @@ buildPythonPackage rec {
sha256 = "e5dc835582ea150e35ecd57e9d86cb707d3aa3b2505679db7332326dd49fd6b8";
};

propagatedBuildInputs = lib.optional isPy27 six;
propagatedBuildInputs = [ six ];

# mozhttpd -> moznetwork -> mozinfo -> mozfile
doCheck = false;
4 changes: 2 additions & 2 deletions pkgs/misc/emulators/mame/default.nix
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ with stdenv;

let
majorVersion = "0";
minorVersion = "221";
minorVersion = "222";

desktopItem = makeDesktopItem {
name = "MAME";
@@ -26,7 +26,7 @@ in mkDerivation {
owner = "mamedev";
repo = "mame";
rev = "mame${majorVersion}${minorVersion}";
sha256 = "1pqwa5qcrk0wgbyns6fkv7j3pn7byf216cixc3phhhgvfidgr8ww";
sha256 = "1ij08h7cflr76qzyhhj21948275lqkpzi9r4pbc7h2avrlpsijx4";
};

hardeningDisable = [ "fortify" ];
4 changes: 2 additions & 2 deletions pkgs/servers/monitoring/prometheus/default.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{ lib, go, buildGoPackage, fetchFromGitHub, mkYarnPackage }:

let
version = "2.19.1";
version = "2.19.2";

src = fetchFromGitHub {
rev = "v${version}";
owner = "prometheus";
repo = "prometheus";
sha256 = "1isv66dnn61mm76r577qqafsn6w5msb0a6i9dykg4z7crcpsnq70";
sha256 = "119csghjmw4lphpnnhaxwimmir5bn455g92rb40j3y9pyv0hlfsh";
};

webui = mkYarnPackage {
29 changes: 22 additions & 7 deletions pkgs/tools/misc/starship/default.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{ stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl
{ stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, installShellFiles
, libiconv, Security }:

rustPlatform.buildRustPackage rec {
pname = "starship";
version = "0.42.0";
version = "0.43.0";

src = fetchFromGitHub {
owner = "starship";
repo = pname;
rev = "v${version}";
sha256 = "17wc9f07308a97dsmrkq74w2r639sqms0hwh8gavwxycj7wq7xz2";
sha256 = "16ch3dhwgwmdalif3cyi3x4vrpww546wspcwc4xi0k7lp2zppbwf";
};

nativeBuildInputs = stdenv.lib.optionals stdenv.isLinux [ pkg-config ];
nativeBuildInputs = [ installShellFiles ] ++ stdenv.lib.optionals stdenv.isLinux [ pkg-config ];

buildInputs = stdenv.lib.optionals stdenv.isLinux [ openssl ]
++ stdenv.lib.optionals stdenv.isDarwin [ libiconv Security ];
@@ -22,14 +22,29 @@ rustPlatform.buildRustPackage rec {
--replace "/bin/echo" "echo"
'';

cargoSha256 = "1nvs68qxygi2l43vxw890r40px35dvzbcg6qmrm09g60ykd8pjv2";
checkPhase = "cargo test -- --skip directory::home_directory --skip directory::directory_in_root";
postInstall = ''
for shell in bash fish zsh; do
$out/bin/starship completions $shell > starship.$shell
installShellCompletion starship.$shell
done
'';

cargoSha256 = "09lq9ngnwg5z2l2y2ah8ng4cl8afb4gy4djwiq9yv61sjlqbr1y2";

preCheck = ''
substituteInPlace tests/testsuite/common.rs \
--replace "./target/debug/starship" "./$releaseDir/starship"
substituteInPlace tests/testsuite/python.rs \
--replace "#[test]" "#[test] #[ignore]"
'';

checkFlagsArray = [ "--skip=directory::home_directory" "--skip=directory::directory_in_root" ];

meta = with stdenv.lib; {
description = "A minimal, blazing fast, and extremely customizable prompt for any shell";
homepage = "https://starship.rs";
license = licenses.isc;
maintainers = with maintainers; [ bbigras davidtwco filalex77 Frostman ];
maintainers = with maintainers; [ bbigras davidtwco filalex77 Frostman marsam ];
platforms = platforms.all;
};
}
4 changes: 2 additions & 2 deletions pkgs/tools/security/lynis/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

stdenv.mkDerivation rec {
pname = "lynis";
version = "2.7.5";
version = "3.0.0";

src = fetchFromGitHub {
owner = "CISOfy";
repo = pname;
rev = version;
sha256 = "1lkkbvxm0rgrrlx0szaxmf8ghc3d26wal96sgqk84m37mvs1f7p0";
sha256 = "05p8h2ww4jcc6lgxrm796cbvlfmw26rxq5fmw0xxavbpadiw752j";
};

nativeBuildInputs = [ makeWrapper ];