about summary refs log tree commit diff
path: root/pkgs/servers/icecast/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/servers/icecast/default.nix')
-rw-r--r--pkgs/servers/icecast/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/servers/icecast/default.nix b/pkgs/servers/icecast/default.nix
index 52f30c7c658c6..15e5e81d05858 100644
--- a/pkgs/servers/icecast/default.nix
+++ b/pkgs/servers/icecast/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl
+{lib, stdenv, fetchurl
 , libxml2, libxslt, curl
 , libvorbis, libtheora, speex, libkate, libopus }:
 
@@ -27,9 +27,9 @@ stdenv.mkDerivation rec {
     '';
 
     homepage = "https://www.icecast.org";
-    license = stdenv.lib.licenses.gpl2;
-    maintainers = with stdenv.lib.maintainers; [ jcumming ];
-    platforms = with stdenv.lib.platforms; unix;
+    license = lib.licenses.gpl2;
+    maintainers = with lib.maintainers; [ jcumming ];
+    platforms = with lib.platforms; unix;
   };
 }