ceph: Add git derivation

This commit is contained in:
William A. Kennington III 2015-04-22 12:34:50 -07:00
parent 9f55b2de6a
commit 05d7fb2054
2 changed files with 15 additions and 1 deletions

View File

@ -0,0 +1,13 @@
{ callPackage, fetchgit, git, ... } @ args:
callPackage ./generic.nix (args // rec {
version = "2015-04-22";
src = fetchgit {
url = "git://github.com/ceph/ceph.git";
rev = "89262abc53e324f3ef4d504473a4f1d6eb337c20";
sha256 = "0d6hlk1nwgx9cdhvppggz6sbjc1jl8j26l9739qspw1sviac5lcb";
};
buildInputs = [ git ];
})

View File

@ -941,7 +941,8 @@ let
ceph-0_80 = callPackage ../tools/filesystems/ceph/0.80.nix { }; ceph-0_80 = callPackage ../tools/filesystems/ceph/0.80.nix { };
ceph-0_94 = callPackage ../tools/filesystems/ceph/0.94.nix { }; ceph-0_94 = callPackage ../tools/filesystems/ceph/0.94.nix { };
ceph = callPackage ../tools/filesystems/ceph { }; ceph = callPackage ../tools/filesystems/ceph { };
ceph-dev = callPackage ../tools/filesystems/ceph/dev.nix { }; ceph-dev = lowPrio (callPackage ../tools/filesystems/ceph/dev.nix { });
ceph-git = lowPrio (callPackage ../tools/filesystems/ceph/git.nix { });
cfdg = builderDefsPackage ../tools/graphics/cfdg { cfdg = builderDefsPackage ../tools/graphics/cfdg {
inherit libpng bison flex ffmpeg; inherit libpng bison flex ffmpeg;