nixpkgs/pkgs/os-specific/linux/zfs/git.nix

18 lines
386 B
Nix
Raw Normal View History

2015-02-16 08:59:01 +01:00
{ callPackage, stdenv, fetchgit, spl_git, ... } @ args:
callPackage ./generic.nix (args // rec {
2015-03-10 19:23:40 +01:00
version = "2015-03-10";
src = fetchgit {
url = git://github.com/zfsonlinux/zfs.git;
2015-03-10 19:23:40 +01:00
rev = "7f3e4662832269b687ff20dafc6a33f8e1d28912";
sha256 = "1z0aizn212m6vygp4iqd3dv2xpqb883bvz12sw6hg7w8isq83ila";
};
2014-12-11 09:39:15 +01:00
patches = [
./nix-build-git.patch
];
spl = spl_git;
})