mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
ceph: Add 0.94 pre
This commit is contained in:
parent
778ea83849
commit
10d10b000a
13
pkgs/tools/filesystems/ceph/0.94-pre.nix
Normal file
13
pkgs/tools/filesystems/ceph/0.94-pre.nix
Normal file
@ -0,0 +1,13 @@
|
||||
{ callPackage, fetchgit, ... } @ args:
|
||||
|
||||
callPackage ./generic.nix (args // rec {
|
||||
version = "0.94.3";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://github.com/ceph/ceph.git";
|
||||
rev = "c19b0fc1aa2834ae3027b07a02aebe9639fc2ca7";
|
||||
sha256 = "1h1y5jh2bszia622rmwdblb3cpkpd0mijahkaiasr30jwpkmzh0i";
|
||||
};
|
||||
|
||||
patches = [ ./fix-pgrefdebugging.patch ];
|
||||
})
|
@ -1066,6 +1066,7 @@ let
|
||||
libceph = ceph.lib;
|
||||
ceph-0_80 = callPackage ../tools/filesystems/ceph/0.80.nix { };
|
||||
ceph-0_94 = callPackage ../tools/filesystems/ceph/0.94.nix { };
|
||||
ceph-0_94-pre = callPackage ../tools/filesystems/ceph/0.94-pre.nix { };
|
||||
ceph = callPackage ../tools/filesystems/ceph { };
|
||||
ceph-dev = lowPrio (callPackage ../tools/filesystems/ceph/dev.nix { });
|
||||
ceph-git = lowPrio (callPackage ../tools/filesystems/ceph/git.nix { });
|
||||
|
Loading…
Reference in New Issue
Block a user