diff options
Diffstat (limited to 'makefu/5pkgs/custom/alsa-tools')
-rw-r--r-- | makefu/5pkgs/custom/alsa-tools/default.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/makefu/5pkgs/custom/alsa-tools/default.nix b/makefu/5pkgs/custom/alsa-tools/default.nix index 5134c10ec..386b08704 100644 --- a/makefu/5pkgs/custom/alsa-tools/default.nix +++ b/makefu/5pkgs/custom/alsa-tools/default.nix @@ -1,4 +1,4 @@ -{stdenv,alsaToolTarget,fetchurl, alsaLib, ncurses, fltk13, gtk3}: +{stdenv, lib, alsaToolTarget,fetchurl, alsaLib, ncurses, fltk13, gtk3}: stdenv.mkDerivation rec { name = "alsa-${alsaToolTarget}-${version}"; @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { homepage = http://www.alsa-project.org/; description = "ALSA tools - ${name}"; - platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.makefu ]; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.makefu ]; }; } |