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-07-02 07:49:36 +02:00
version = "2015-06-29";
2015-01-02 20:38:04 +01:00
src = fetchgit {
url = git://github.com/zfsonlinux/spl.git;
2015-07-02 07:49:36 +02:00
rev = "77ab5dd33a99bdf7fb062f0ea327582236a225b3";
sha256 = "1hbn8hi305cn15nlcm9x99nczjqjkhdc38hzww11xn78py8d90w9";
};
2015-04-09 22:20:02 +02:00
patches = [ ./const.patch ./install_prefix.patch ];
})