zfs: Update to 0.6.5

This commit is contained in:
William A. Kennington III
2015-09-11 17:45:38 -07:00
parent 9cb93e7966
commit 6727f76739
6 changed files with 6 additions and 441 deletions
+3 -8
View File
@@ -1,19 +1,14 @@
{ callPackage, fetchFromGitHub, ... } @ args:
callPackage ./generic.nix (args // rec {
version = "0.6.4.2";
version = "0.6.5";
src = fetchFromGitHub {
owner = "zfsonlinux";
repo = "zfs";
rev = "zfs-${version}";
sha256 = "192x4z5am5wgrr4hb5skshyr5a6af52xpnk6pni4hs4pxvlpcs37";
sha256 = "1jqm2a9mldp4km5m454zszsw6p8hrqd7xrbf52pgp82kf5w3d6wz";
};
patches = [
./nix-build.patch
./compat-4.2-1.patch
./compat-4.2-2.patch
./compat-4.2-3.patch
];
patches = [ ./nix-build.patch ];
})