about summary refs log tree commit diff
path: root/nixpkgs/pkgs/os-specific/linux/cpuset/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/os-specific/linux/cpuset/default.nix')
-rw-r--r--nixpkgs/pkgs/os-specific/linux/cpuset/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixpkgs/pkgs/os-specific/linux/cpuset/default.nix b/nixpkgs/pkgs/os-specific/linux/cpuset/default.nix
index 9e775de62f58..d1a93e4247e9 100644
--- a/nixpkgs/pkgs/os-specific/linux/cpuset/default.nix
+++ b/nixpkgs/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;