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

Commits on Mar 14, 2019

  1. cgmanager: 0.41 -> 0.42

    dtzWill committed Mar 14, 2019
    Copy the full SHA
    67f160c View commit details

Commits on Mar 28, 2019

  1. Merge pull request #57626 from dtzWill/update/cgmanager-0.42

    cgmanager: 0.41 -> 0.42
    infinisil authored Mar 28, 2019
    Copy the full SHA
    2b06732 View commit details
Showing with 6 additions and 5 deletions.
  1. +6 −5 pkgs/os-specific/linux/cgmanager/default.nix
11 changes: 6 additions & 5 deletions pkgs/os-specific/linux/cgmanager/default.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
{ stdenv, fetchurl, pkgconfig, libnih, dbus, pam }:
{ stdenv, fetchurl, pkgconfig, libnih, dbus, pam, popt }:

stdenv.mkDerivation rec {
name = "cgmanager-0.41";
pname = "cgmanager";
version = "0.42";

src = fetchurl {
url = "https://linuxcontainers.org/downloads/cgmanager/${name}.tar.gz";
sha256 = "0n5l4g78ifvyfnj8x9xz06mqn4y8j73sgg4xsbak7hiszfz5bc99";
url = "https://linuxcontainers.org/downloads/${pname}/${pname}-${version}.tar.gz";
sha256 = "15np08h9jrvc1y1iafr8v654mzgsv5hshzc0n4p3pbf0rkra3h7c";
};

nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libnih dbus pam ];
buildInputs = [ libnih dbus pam popt ];

configureFlags = [
"--with-init-script=systemd"