summary refs log tree commit diff
path: root/pkgs/os-specific/linux/pflask
diff options
context:
space:
mode:
authortg(x) <*@tg-x.net>2016-02-10 20:34:28 +0100
committertg(x) <*@tg-x.net>2016-02-10 20:34:28 +0100
commit60969ab93712f1edf1ccc2e55b17aa9e2944564c (patch)
tree943c905c96b382d17e655d402adaf216ea23e25a /pkgs/os-specific/linux/pflask
parent310a20eda83261f72f670770f232b3bb0ed3cdf5 (diff)
downloadnixpkgs-60969ab93712f1edf1ccc2e55b17aa9e2944564c.tar
nixpkgs-60969ab93712f1edf1ccc2e55b17aa9e2944564c.tar.gz
nixpkgs-60969ab93712f1edf1ccc2e55b17aa9e2944564c.tar.bz2
nixpkgs-60969ab93712f1edf1ccc2e55b17aa9e2944564c.tar.lz
nixpkgs-60969ab93712f1edf1ccc2e55b17aa9e2944564c.tar.xz
nixpkgs-60969ab93712f1edf1ccc2e55b17aa9e2944564c.tar.zst
nixpkgs-60969ab93712f1edf1ccc2e55b17aa9e2944564c.zip
pflask: use waf package
Diffstat (limited to 'pkgs/os-specific/linux/pflask')
-rw-r--r--pkgs/os-specific/linux/pflask/default.nix8
1 files changed, 2 insertions, 6 deletions
diff --git a/pkgs/os-specific/linux/pflask/default.nix b/pkgs/os-specific/linux/pflask/default.nix
index 931b074534e..b4f93e9de3f 100644
--- a/pkgs/os-specific/linux/pflask/default.nix
+++ b/pkgs/os-specific/linux/pflask/default.nix
@@ -1,5 +1,4 @@
-{ lib, stdenv, fetchurl, python
-}:
+{ lib, stdenv, fetchurl, python, waf }:
 
 stdenv.mkDerivation rec {
   name = "pflask-${version}";
@@ -14,10 +13,7 @@ stdenv.mkDerivation rec {
   buildInputs = [ python ];
 
   configurePhase = ''
-    ln -s ${fetchurl {
-      url = "http://ftp.waf.io/pub/release/waf-1.8.6";
-      sha256 = "81c4e6a3144c7b2021a839e7277bdaf1cedbbc87302186897b4ae03f4effcbf5";
-    }} waf
+    ln -s ${waf} waf
     python waf configure --prefix=$out
   '';
   buildPhase = ''