1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/os-specific/linux/spl/default.nix

15 lines
342 B
Nix
Raw Normal View History

{ callPackage, fetchFromGitHub, ... } @ args:
2012-10-05 17:11:25 +01:00
callPackage ./generic.nix (args // rec {
2015-07-02 06:48:21 +01:00
version = "0.6.4.2";
2014-12-24 01:04:44 +00:00
src = fetchFromGitHub {
owner = "zfsonlinux";
repo = "spl";
rev = "spl-${version}";
2015-07-02 06:48:21 +01:00
sha256 = "101c5fzhnz67ix5w33rb2pwazxmyz6rfvyszbwy1kgh6rz75bjr4";
2012-10-05 17:11:25 +01:00
};
2015-04-09 21:20:02 +01:00
patches = [ ./const.patch ./install_prefix.patch ];
})