summary refs log tree commit diff
path: root/pkgs/os-specific/linux/zfs/git.nix
blob: bf127301d2e330f823f14595b880edb9d5d246bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ callPackage, stdenv, fetchFromGitHub, spl_git, ... } @ args:

callPackage ./generic.nix (args // rec {
  version = "2015-09-11";

  src = fetchFromGitHub {
    owner = "zfsonlinux";
    repo = "zfs";
    rev = "7a27ad00ae142b38d4aef8cc0af7a72b4c0e44fe";
    sha256 = "1jqm2a9mldp4km5m454zszsw6p8hrqd7xrbf52pgp82kf5w3d6wz";
  };

  patches = [
    ./nix-build.patch
    ./0.6.5-fix-corruption.patch
  ];

  spl = spl_git;
})