summary refs log tree commit diff
path: root/pkgs/os-specific/linux/zfs
diff options
context:
space:
mode:
authorSebastián Bernardo Galkin <paraseba@gmail.com>2015-01-21 10:00:09 -0800
committerSebastián Bernardo Galkin <paraseba@gmail.com>2015-01-21 10:00:09 -0800
commit3c049072061fa903644bf505d98bac74c682c1df (patch)
tree939a4c009522021b188acd1d1e14e5ba12ea8823 /pkgs/os-specific/linux/zfs
parentc8648e14a444ea6fc39587ecfda8a9cf4bc6fd29 (diff)
downloadnixlib-3c049072061fa903644bf505d98bac74c682c1df.tar
nixlib-3c049072061fa903644bf505d98bac74c682c1df.tar.gz
nixlib-3c049072061fa903644bf505d98bac74c682c1df.tar.bz2
nixlib-3c049072061fa903644bf505d98bac74c682c1df.tar.lz
nixlib-3c049072061fa903644bf505d98bac74c682c1df.tar.xz
nixlib-3c049072061fa903644bf505d98bac74c682c1df.tar.zst
nixlib-3c049072061fa903644bf505d98bac74c682c1df.zip
Fixup zfs python scripts
zfs ships with a couple of python scripts that needed shebang rewriting. Adding
python as a build dependency enables fixup to do the rewrite. This change
complements 390c838c7fd9e21266b33d00da91ffa3d7a3e706 by applying the same to the
git derivation.
Diffstat (limited to 'pkgs/os-specific/linux/zfs')
-rw-r--r--pkgs/os-specific/linux/zfs/git.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/zfs/git.nix b/pkgs/os-specific/linux/zfs/git.nix
index 21a580136d56..89f5cb9a2ad4 100644
--- a/pkgs/os-specific/linux/zfs/git.nix
+++ b/pkgs/os-specific/linux/zfs/git.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchgit, kernel, spl_git, perl, autoconf, automake, libtool, zlib, libuuid, coreutils, utillinux }:
+{ stdenv, fetchgit, kernel, spl_git, perl, python, autoconf, automake, libtool, zlib, libuuid, coreutils, utillinux }:
 
 stdenv.mkDerivation {
   name = "zfs-0.6.4-${kernel.version}";
@@ -13,7 +13,7 @@ stdenv.mkDerivation {
     ./nix-build-git.patch
   ];
 
-  buildInputs = [ spl_git perl autoconf automake libtool zlib libuuid coreutils ];
+  buildInputs = [ spl_git perl python autoconf automake libtool zlib libuuid coreutils ];
 
   # for zdb to get the rpath to libgcc_s, needed for pthread_cancel to work
   NIX_CFLAGS_LINK = "-lgcc_s";