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

callPackage ./generic.nix (args // rec {
  version = "2015-07-21";

  src = fetchFromGitHub {
    owner = "zfsonlinux";
    repo = "zfs";
    rev = "3b79cef21294f3ec46c4f71cc5a68a75a4d0ebc7";
    sha256 = "01l4cg62wgn3wzasskx2nh3a4c74vq8qcwz090x8x1r4c2r4v943";
  };

  patches = [ ./nix-build.patch ];

  spl = spl_git;
})