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-04-05 03:11:08 +00:00
version = "2015-04-03";
2015-01-02 19:38:04 +00:00
src = fetchgit {
url = git://github.com/zfsonlinux/spl.git;
2015-04-05 03:11:08 +00:00
rev = "ae26dd003911277e0c7134b3e4e3a41c300a2fd5";
sha256 = "0wq1raz68b9msbn00q1zg89rm5l7l2018k7m31s4b4gj17w38h5b";
};
2015-01-02 19:38:04 +00:00
patches = [ ./const.patch ./install_prefix-git.patch ];
})