summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2017-05-31 13:58:06 +0200
committerPeter Simons <simons@cryp.to>2017-05-31 13:58:06 +0200
commit1c0b50c91821dcf62176e1931bd06e15db2eec99 (patch)
tree157ba15f9f113a60d3244ed7b3e71f4ceda00f61
parentb116a1c65c344e868924e327324ae3ac1e0626cd (diff)
downloadnixpkgs-1c0b50c91821dcf62176e1931bd06e15db2eec99.tar
nixpkgs-1c0b50c91821dcf62176e1931bd06e15db2eec99.tar.gz
nixpkgs-1c0b50c91821dcf62176e1931bd06e15db2eec99.tar.bz2
nixpkgs-1c0b50c91821dcf62176e1931bd06e15db2eec99.tar.lz
nixpkgs-1c0b50c91821dcf62176e1931bd06e15db2eec99.tar.xz
nixpkgs-1c0b50c91821dcf62176e1931bd06e15db2eec99.tar.zst
nixpkgs-1c0b50c91821dcf62176e1931bd06e15db2eec99.zip
quilt: take dependencies as explicit function arguments
-rw-r--r--pkgs/development/tools/quilt/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/quilt/default.nix b/pkgs/development/tools/quilt/default.nix
index 69479700c7f..fe6aeb3fa6e 100644
--- a/pkgs/development/tools/quilt/default.nix
+++ b/pkgs/development/tools/quilt/default.nix
@@ -1,8 +1,7 @@
-{ stdenv, fetchurl, pkgs}:
-
-with pkgs;
+{ stdenv, fetchurl, makeWrapper, bash, perl, diffstat, diffutils, patch, findutils }:
 
 stdenv.mkDerivation rec {
+
   name = "quilt-0.65";
 
   src = fetchurl {
@@ -31,4 +30,5 @@ stdenv.mkDerivation rec {
     license = stdenv.lib.licenses.gpl2Plus;
     platforms = stdenv.lib.platforms.all;
   };
+
 }