1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/os-specific/linux/spl/git.nix
2015-03-03 12:58:43 -08:00

14 lines
364 B
Nix

{ callPackage, fetchgit, ... } @ args:
callPackage ./generic.nix (args // rec {
version = "2015-02-27";
src = fetchgit {
url = git://github.com/zfsonlinux/spl.git;
rev = "c1bc8e610be8bf1cc8170f788a89a9ee257eb51f";
sha256 = "1rpq7rxqmqmlaqv9aj7n2bmlw3ls55iyhcsk8kp4g9kf20f0pgym";
};
patches = [ ./const.patch ./install_prefix-git.patch ];
})