2015-02-07 23:32:35 +01:00
|
|
|
{ callPackage, fetchgit, ... } @ args:
|
2014-03-22 18:27:23 +01:00
|
|
|
|
2015-02-07 23:32:35 +01:00
|
|
|
callPackage ./generic.nix (args // rec {
|
2015-03-03 21:58:43 +01:00
|
|
|
version = "2015-02-27";
|
2015-01-02 20:38:04 +01:00
|
|
|
|
2014-03-22 18:27:23 +01:00
|
|
|
src = fetchgit {
|
|
|
|
url = git://github.com/zfsonlinux/spl.git;
|
2015-03-03 21:58:43 +01:00
|
|
|
rev = "c1bc8e610be8bf1cc8170f788a89a9ee257eb51f";
|
|
|
|
sha256 = "1rpq7rxqmqmlaqv9aj7n2bmlw3ls55iyhcsk8kp4g9kf20f0pgym";
|
2014-03-22 18:27:23 +01:00
|
|
|
};
|
|
|
|
|
2015-01-02 20:38:04 +01:00
|
|
|
patches = [ ./const.patch ./install_prefix-git.patch ];
|
2015-02-07 23:32:35 +01:00
|
|
|
})
|