summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJoachim F <joachifm@users.noreply.github.com>2017-10-11 21:34:40 +0000
committerGitHub <noreply@github.com>2017-10-11 21:34:40 +0000
commit26c8573b1e99f9d827a50d1aab69bc2a243ee1af (patch)
treee967daf7fb4fdb27021cf3387cad2bff0444e80c /pkgs
parentc4053024020fc38e2cbd2724f7a573311b5d1bd2 (diff)
parenta5d820beb16369313da264b8441014a297735e1d (diff)
downloadnixlib-26c8573b1e99f9d827a50d1aab69bc2a243ee1af.tar
nixlib-26c8573b1e99f9d827a50d1aab69bc2a243ee1af.tar.gz
nixlib-26c8573b1e99f9d827a50d1aab69bc2a243ee1af.tar.bz2
nixlib-26c8573b1e99f9d827a50d1aab69bc2a243ee1af.tar.lz
nixlib-26c8573b1e99f9d827a50d1aab69bc2a243ee1af.tar.xz
nixlib-26c8573b1e99f9d827a50d1aab69bc2a243ee1af.tar.zst
nixlib-26c8573b1e99f9d827a50d1aab69bc2a243ee1af.zip
Merge pull request #30224 from andir/cleanup
Cleanup typoed `propagateBuildInputs` that are probably not needded
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/networking/cluster/kanif/default.nix2
-rw-r--r--pkgs/tools/filesystems/irods/common.nix2
-rw-r--r--pkgs/tools/filesystems/irods/default.nix2
3 files changed, 0 insertions, 6 deletions
diff --git a/pkgs/applications/networking/cluster/kanif/default.nix b/pkgs/applications/networking/cluster/kanif/default.nix
index bac0cc37af33..5b543854473d 100644
--- a/pkgs/applications/networking/cluster/kanif/default.nix
+++ b/pkgs/applications/networking/cluster/kanif/default.nix
@@ -4,8 +4,6 @@ stdenv.mkDerivation rec {
   version = "1.2.2";
   name = "kanif-${version}";
 
-  propagateBuildInputs = [ perl taktuk ];
-
   src = fetchurl {
     url = "http://gforge.inria.fr/frs/download.php/26773/${name}.tar.gz";
     sha256 = "3f0c549428dfe88457c1db293cfac2a22b203f872904c3abf372651ac12e5879";
diff --git a/pkgs/tools/filesystems/irods/common.nix b/pkgs/tools/filesystems/irods/common.nix
index 9c5412ddef7c..c7267aca1071 100644
--- a/pkgs/tools/filesystems/irods/common.nix
+++ b/pkgs/tools/filesystems/irods/common.nix
@@ -9,8 +9,6 @@ with stdenv;
 
   buildInputs = [ bzip2 zlib autoconf automake cmake gnumake help2man texinfo libtool cppzmq libarchive avro-cpp jansson zeromq openssl pam libiodbc kerberos gcc boost libcxx which ];
 
-  propagateBuildInputs = [ boost ];
-
   cmakeFlags = [
     "-DIRODS_EXTERNALS_FULLPATH_CLANG=${stdenv.cc}"
     "-DIRODS_EXTERNALS_FULLPATH_CLANG_RUNTIME=${stdenv.cc}"
diff --git a/pkgs/tools/filesystems/irods/default.nix b/pkgs/tools/filesystems/irods/default.nix
index 0714f2901046..523028f5fb2e 100644
--- a/pkgs/tools/filesystems/irods/default.nix
+++ b/pkgs/tools/filesystems/irods/default.nix
@@ -62,8 +62,6 @@ in rec {
 
      buildInputs = common.buildInputs ++ [ irods ];
 
-     propagateBuildInputs = [ boost ];
-
      preConfigure = common.preConfigure + ''
        patchShebangs ./bin
      '';