nixpkgs-suyu/pkgs/os-specific/linux/zfs/default.nix

20 lines
404 B
Nix
Raw Normal View History

{ callPackage, fetchFromGitHub, ... } @ args:
2012-10-05 18:11:25 +02:00
callPackage ./generic.nix (args // rec {
2015-07-02 07:50:49 +02:00
version = "0.6.4.2";
2014-12-24 02:04:54 +01:00
src = fetchFromGitHub {
owner = "zfsonlinux";
repo = "zfs";
rev = "zfs-${version}";
2015-07-02 07:50:49 +02:00
sha256 = "192x4z5am5wgrr4hb5skshyr5a6af52xpnk6pni4hs4pxvlpcs37";
2012-10-05 18:11:25 +02:00
};
2015-09-01 17:56:47 +02:00
patches = [
./nix-build.patch
./compat-4.2-1.patch
./compat-4.2-2.patch
./compat-4.2-3.patch
];
})