summary refs log tree commit diff
path: root/pkgs/tools/networking/rp-pppoe
diff options
context:
space:
mode:
authorMathnerd314 <mathnerd314.gph+hs@gmail.com>2015-09-14 22:27:19 -0600
committerMathnerd314 <mathnerd314.gph+hs@gmail.com>2015-09-14 22:27:19 -0600
commiteb7404d97a7e46df1f598a74982ca06e08033a45 (patch)
tree6b5752df7032ba1efc535cf884db4891f20dd786 /pkgs/tools/networking/rp-pppoe
parent7fb1c7efcfa34a4af9f5de5fbde9e12d15017a90 (diff)
downloadnixpkgs-eb7404d97a7e46df1f598a74982ca06e08033a45.tar
nixpkgs-eb7404d97a7e46df1f598a74982ca06e08033a45.tar.gz
nixpkgs-eb7404d97a7e46df1f598a74982ca06e08033a45.tar.bz2
nixpkgs-eb7404d97a7e46df1f598a74982ca06e08033a45.tar.lz
nixpkgs-eb7404d97a7e46df1f598a74982ca06e08033a45.tar.xz
nixpkgs-eb7404d97a7e46df1f598a74982ca06e08033a45.tar.zst
nixpkgs-eb7404d97a7e46df1f598a74982ca06e08033a45.zip
all-packages: Use callPackage where possible
Diffstat (limited to 'pkgs/tools/networking/rp-pppoe')
-rw-r--r--pkgs/tools/networking/rp-pppoe/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/networking/rp-pppoe/default.nix b/pkgs/tools/networking/rp-pppoe/default.nix
index fe7f9810026..fcbb5f63d82 100644
--- a/pkgs/tools/networking/rp-pppoe/default.nix
+++ b/pkgs/tools/networking/rp-pppoe/default.nix
@@ -1,10 +1,10 @@
-a :  
-let 
+a @ {ppp, ...} :
+let
   fetchurl = a.fetchurl;
 
   version = a.lib.attrByPath ["version"] "3.11" a;
   buildInputs = with a; [
-    ppp   
+    ppp
   ];
 in
 rec {