about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/zfs/git.nix
blob: 0423d139c83c9e0701ad83a21750182f9817d63c (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-09-19";

  src = fetchFromGitHub {
    owner = "zfsonlinux";
    repo = "zfs";
    rev = "3af56fd95fbe8b417d7ed7c9c25ef59d6f1ee161";
    sha256 = "08sx1jzwrsdyvvlcf5as7rkglgbx5x6zvfn8ps8gk4miqfckq4z0";
  };

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

  spl = spl_git;
})