Skip to content
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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4d33c0eea84a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 91e057d1b784
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Sep 6, 2018

  1. nix-plugins: 4.0.5 -> 5.0.0.

    Fixes build against nix 2.1.
    
    (cherry picked from commit 56a605c)
    shlevy authored and grahamc committed Sep 6, 2018

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    91e057d View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/nix-plugins/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/nix-plugins/default.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{ stdenv, fetchFromGitHub, nix, cmake, pkgconfig, boost }:
let version = "4.0.5"; in
let version = "5.0.0"; in
stdenv.mkDerivation {
name = "nix-plugins-${version}";

src = fetchFromGitHub {
owner = "shlevy";
repo = "nix-plugins";
rev = version;
sha256 = "170f365rnik62fp9wllbqlspr8lf1yb96pmn2z708i2wjlkdnrny";
sha256 = "0231j92504vx0f4wax9hwjdni1j4z0g8bx9wbakg6rbghl4svmdv";
};

nativeBuildInputs = [ cmake pkgconfig ];