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

14 lines
360 B
Nix
Raw Normal View History

{ callPackage, fetchgit, ... } @ args:
callPackage ./generic.nix (args // rec {
2015-04-09 22:10:07 +02:00
version = "2015-04-08";
2015-01-02 20:38:04 +01:00
src = fetchgit {
url = git://github.com/zfsonlinux/spl.git;
2015-04-09 22:10:07 +02:00
rev = "cd69f020e4b0f9c416dd07a264e48c9488a7633f";
sha256 = "1fy5zlh8cs65s52vixkp00ihrlrhs2frd6vwxwjqmpzyb7fnh3m8";
};
2015-04-09 22:20:02 +02:00
patches = [ ./const.patch ./install_prefix.patch ];
})