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: 9edf8f73f76b
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: 039983bd7a49
Choose a head ref
  • 15 commits
  • 11 files changed
  • 9 contributors

Commits on Jun 6, 2019

  1. php: fix zts options

    Izorkin committed Jun 6, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    lukekarrys Luke Karrys
    Copy the full SHA
    f93d637 View commit details

Commits on Jun 10, 2019

  1. nixos-generate-config: add support for bcache

    Add "bcache" to boot.initrd.availableKernelModules if a bcache device is
    detected.
    
    This fixes a problem I've had one too many times: I install NixOS and
    forget to add "bcache", resulting in an unbootable machine (until fixed
    with Live CD). Now NixOS will do it for me.
    bjornfor committed Jun 10, 2019
    Copy the full SHA
    4755811 View commit details

Commits on Jun 11, 2019

  1. octopus: 8.4 -> 9.0

    markuskowa committed Jun 11, 2019
    Copy the full SHA
    4df1e91 View commit details
  2. Copy the full SHA
    925f803 View commit details
  3. php: update build config

    Izorkin committed Jun 11, 2019
    Copy the full SHA
    a6a26c1 View commit details
  4. Copy the full SHA
    59c4b84 View commit details
  5. Copy the full SHA
    d613239 View commit details

Commits on Jun 12, 2019

  1. xorg.xcalc: 1.0.7 -> 1.1.0

    xcalc: ensure "app-defaults" resources are installed+found, works now
    dtzWill committed Jun 12, 2019
    Copy the full SHA
    813799a View commit details
  2. browsh: 1.5.0 -> 1.5.2

    * update/regen deps.nix
    dtzWill authored and Matthieu Coudron committed Jun 12, 2019
    Copy the full SHA
    b647471 View commit details
  3. Merge pull request #63018 from dtzWill/update/xclock-1.1.0

    xorg.xcalc: 1.0.7 -> 1.1.0
    teto authored Jun 12, 2019
    Copy the full SHA
    3f00ca9 View commit details
  4. bitlbee-discord: set BITLBEE_DATADIR

    Build fails otherwise
    
    Signed-off-by: William Casarin <jb55@jb55.com>
    jb55 authored and Lassulus committed Jun 12, 2019
    Copy the full SHA
    6845a83 View commit details
  5. bitlebee-discord: add myself as maintainer

    Signed-off-by: William Casarin <jb55@jb55.com>
    jb55 authored and Lassulus committed Jun 12, 2019
    Copy the full SHA
    14ebdbb View commit details
  6. Merge pull request #62976 from markuskowa/upd-octopus

    octopus: 8.4 -> 9.0
    markuskowa authored Jun 12, 2019
    Copy the full SHA
    ca09991 View commit details
  7. Merge pull request #62966 from bjornfor/nixos-generate-config-bcache

    nixos-generate-config: add support for bcache
    edolstra authored Jun 12, 2019
    Copy the full SHA
    734b3e7 View commit details
  8. Merge pull request #62783 from Izorkin/php-packages

    php: update build config and php package
    etu authored Jun 12, 2019
    Copy the full SHA
    039983b View commit details
5 changes: 5 additions & 0 deletions nixos/modules/installer/tools/nixos-generate-config.pl
Original file line number Diff line number Diff line change
@@ -258,6 +258,11 @@ sub usbCheck {
}
}

# Add bcache module, if needed.
my @bcacheDevices = glob("/dev/bcache*");
if (scalar @bcacheDevices > 0) {
push @initrdAvailableKernelModules, "bcache";
}

my $virt = `systemd-detect-virt`;
chomp $virt;
6 changes: 3 additions & 3 deletions pkgs/applications/networking/browsers/browsh/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{ stdenv, buildGoPackage, fetchurl, fetchFromGitHub, go-bindata }:

let
version = "1.5.0";
version = "1.5.2";

# TODO: must build the extension instead of downloading it. But since it's
# literally an asset that is indifferent regardless of the platform, this
# might be just enough.
webext = fetchurl {
url = "https://github.com/browsh-org/browsh/releases/download/v${version}/browsh-${version}-an.fx.xpi";
sha256 = "063m6rcdyf2zcrswkm56k8h3w15124bw5iykklzm60q5jk4ywn3f";
sha256 = "0b9aycyif0hfhfkivlnvinr13r9h4qyxx768286966p67napbd63";
};

in buildGoPackage rec {
@@ -23,7 +23,7 @@ in buildGoPackage rec {
owner = "browsh-org";
repo = "browsh";
rev = "v${version}";
sha256 = "14addyb1zdk1b9mizfxdagyzlkd9nf5gawnbrs44j5a3ggnl14ln";
sha256 = "1z78kgxrbi2jy20rbq6kx5mjk4gpg58w4rb3flp42l9p7bhdbr2h";
};

buildInputs = [ go-bindata ];
139 changes: 65 additions & 74 deletions pkgs/applications/networking/browsers/browsh/deps.nix

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

Original file line number Diff line number Diff line change
@@ -17,6 +17,7 @@ stdenv.mkDerivation rec {

preConfigure = ''
export BITLBEE_PLUGINDIR=$out/lib/bitlbee
export BITLBEE_DATADIR=$out/share/bitlbee
./autogen.sh
'';

@@ -25,7 +26,7 @@ stdenv.mkDerivation rec {

homepage = https://github.com/sm00th/bitlbee-discord;
license = licenses.gpl2Plus;
maintainers = [ maintainers.lassulus ];
maintainers = with maintainers; [ lassulus jb55 ];
platforms = stdenv.lib.platforms.linux;
};
}
4 changes: 2 additions & 2 deletions pkgs/applications/science/chemistry/octopus/default.nix
Original file line number Diff line number Diff line change
@@ -3,15 +3,15 @@
}:

let
version = "8.4";
version = "9.0";
fftwAll = symlinkJoin { name ="ftw-dev-out"; paths = [ fftw.dev fftw.out ]; };

in stdenv.mkDerivation {
name = "octopus-${version}";

src = fetchurl {
url = "http://www.tddft.org/programs/octopus/down.php?file=${version}/octopus-${version}.tar.gz";
sha256 = "1fx5ssnf65b9ld7xs9rvvg8i80pblxpyhqkir0a7xshkk1g60z55";
sha256 = "0p1gjykjnzm4m93mgjsmnxd0n2j381jk5kn3a7gkzxanixp60ilm";
};

nativeBuildInputs = [ perl procps fftw.dev ];
4 changes: 2 additions & 2 deletions pkgs/build-support/build-pecl.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, php, autoreconfHook, fetchurl }:
{ stdenv, php, autoreconfHook, fetchurl, re2c }:

{ pname
, version
@@ -17,7 +17,7 @@ stdenv.mkDerivation (args // {

inherit src;

nativeBuildInputs = [ autoreconfHook ] ++ nativeBuildInputs;
nativeBuildInputs = [ autoreconfHook re2c ] ++ nativeBuildInputs;
buildInputs = [ php ] ++ buildInputs;

makeFlags = [ "EXTENSION_DIR=$(out)/lib/php/extensions" ] ++ makeFlags;
Loading