about summary refs log tree commit diff
path: root/pkgs/tools/networking/uget
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2017-02-26 20:36:20 +0100
committerRobin Gloster <mail@glob.in>2017-02-27 12:16:26 +0100
commit0591cd607b3bcb2af298d978c1cedf8c5d9a1328 (patch)
tree0ba131bbda617dea9c86e80398339903109a566e /pkgs/tools/networking/uget
parent4b2c7fe3d1c6f46d5829db0e4b9dab1bdbfd8c1b (diff)
gst-plugins-good: align attrname with pkgname
Diffstat (limited to 'pkgs/tools/networking/uget')
-rw-r--r--pkgs/tools/networking/uget/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/uget/default.nix b/pkgs/tools/networking/uget/default.nix
index 2408337d819ef..8a60858526ee9 100644
--- a/pkgs/tools/networking/uget/default.nix
+++ b/pkgs/tools/networking/uget/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchurl, pkgconfig, intltool, openssl, curl, libnotify, gstreamer,
-  gst_plugins_base, gst_plugins_good, gnome3, makeWrapper, aria2 ? null }:
+  gst_plugins_base, gst-plugins-good, gnome3, makeWrapper, aria2 ? null }:
 
 stdenv.mkDerivation rec {
   name = "uget-${version}";
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ pkgconfig intltool makeWrapper ];
   
   buildInputs = [
-    openssl curl libnotify gstreamer gst_plugins_base gst_plugins_good
+    openssl curl libnotify gstreamer gst_plugins_base gst-plugins-good
     gnome3.gtk gnome3.dconf
   ]
   ++ (stdenv.lib.optional (aria2 != null) aria2);