summary refs log tree commit diff
path: root/pkgs/os-specific/linux/cpuset
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/os-specific/linux/cpuset')
-rw-r--r--pkgs/os-specific/linux/cpuset/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/cpuset/default.nix b/pkgs/os-specific/linux/cpuset/default.nix
index 9e775de62f5..d1a93e4247e 100644
--- a/pkgs/os-specific/linux/cpuset/default.nix
+++ b/pkgs/os-specific/linux/cpuset/default.nix
@@ -1,4 +1,4 @@
-{ stdenv
+{ lib, stdenv
 , fetchFromGitHub
 , fetchpatch
 , pythonPackages
@@ -35,7 +35,7 @@ pythonPackages.buildPythonApplication rec {
     make
   '';
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "Python application that forms a wrapper around the standard Linux filesystem calls to make using the cpusets facilities in the Linux kernel easier";
     homepage    = "https://github.com/lpechacek/cpuset";
     license     = licenses.gpl2;