mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
1e28cd0c83
Removed time.patch (applied upstream).
15 lines
344 B
Nix
15 lines
344 B
Nix
{ callPackage, fetchFromGitHub, ... } @ args:
|
|
|
|
callPackage ./generic.nix (args // rec {
|
|
version = "0.6.3-1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zfsonlinux";
|
|
repo = "spl";
|
|
rev = "spl-${version}";
|
|
sha256 = "1d4gdlkhshlyfkswbqx06fhs8m5lxgk3vhds6g7ipd3q93ngrczx";
|
|
};
|
|
|
|
patches = [ ./install_prefix.patch ./const.patch ];
|
|
})
|