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 21:25:29 +0100
committerRobin Gloster <mail@glob.in>2017-02-27 12:16:26 +0100
commit3d104ab2b3e578cb4599b6fffbcc019b09547521 (patch)
treeda0852033c00cee83ac2dc46281c307d38ae5259 /pkgs/tools/networking/uget
parentc49533a4949b5fc7d3511dce7df4c27f811df4d7 (diff)
downloadnixpkgs-3d104ab2b3e578cb4599b6fffbcc019b09547521.tar
nixpkgs-3d104ab2b3e578cb4599b6fffbcc019b09547521.tar.gz
nixpkgs-3d104ab2b3e578cb4599b6fffbcc019b09547521.tar.bz2
nixpkgs-3d104ab2b3e578cb4599b6fffbcc019b09547521.tar.lz
nixpkgs-3d104ab2b3e578cb4599b6fffbcc019b09547521.tar.xz
nixpkgs-3d104ab2b3e578cb4599b6fffbcc019b09547521.tar.zst
nixpkgs-3d104ab2b3e578cb4599b6fffbcc019b09547521.zip
gst-plugins-base: 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 8a60858526e..b5119bc594b 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);