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: 0b7a3308b71d
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: eae4eec50e8e
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 23, 2018

  1. systemd: use stable tree

    This fixes a bug with changed qemu network interface names and also generally
    should be preferred to using a release tag.
    abbradar authored and fpletz committed Mar 23, 2018
    14
    Copy the full SHA
    6b9771e View commit details
  2. Merge pull request #37692 from abbradar/systemd-238

    systemd: use stable tree
    fpletz authored Mar 23, 2018
    Copy the full SHA
    eae4eec View commit details
Showing with 4 additions and 2 deletions.
  1. +4 −2 pkgs/os-specific/linux/systemd/default.nix
6 changes: 4 additions & 2 deletions pkgs/os-specific/linux/systemd/default.nix
Original file line number Diff line number Diff line change
@@ -21,11 +21,13 @@ in stdenv.mkDerivation rec {
version = "238";
name = "systemd-${version}";

# When updating, use https://github.com/systemd/systemd-stable tree, not the development one!
# Also fresh patches should be cherry-picked from that tree to our current one.
src = fetchFromGitHub {
owner = "NixOS";
repo = "systemd";
rev = "243d65d38f2df82d4a39f6a9970337803dff65a1";
sha256 = "098hxlkh6q17rxa178adylksxnnd4x9rxb8amjnlbiydcc6kaa5n";
rev = "3a439bcdb5706dbb44215ef4e70f07b09aaac040";
sha256 = "0qkk5891068pkxmxqvm07bwl597i8lfp89c23yxp11m21cjq0f4b";
};

outputs = [ "out" "lib" "man" "dev" ];