nixpkgs/pkgs/os-specific/linux/spl/git.nix

14 lines
364 B
Nix
Raw Normal View History

{ callPackage, fetchgit, ... } @ args:
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
src = fetchgit {
url = git://github.com/zfsonlinux/spl.git;
2015-03-03 21:58:43 +01:00
rev = "c1bc8e610be8bf1cc8170f788a89a9ee257eb51f";
sha256 = "1rpq7rxqmqmlaqv9aj7n2bmlw3ls55iyhcsk8kp4g9kf20f0pgym";
};
2015-01-02 20:38:04 +01:00
patches = [ ./const.patch ./install_prefix-git.patch ];
})