nixpkgs/pkgs/tools/filesystems/ceph/dev.nix

17 lines
354 B
Nix
Raw Normal View History

2015-06-24 18:25:53 -07:00
{ callPackage, fetchgit, ... } @ args:
callPackage ./generic.nix (args // rec {
2015-09-01 00:26:14 -07:00
version = "9.0.3";
2015-06-24 18:25:53 -07:00
src = fetchgit {
url = "https://github.com/ceph/ceph.git";
rev = "refs/tags/v${version}";
2015-09-01 00:26:14 -07:00
sha256 = "08ccy735srzmi505qlrpqdh5js40mpd5k1vdhnysknra0vqlpmdx";
2015-06-24 18:25:53 -07:00
};
2015-07-15 17:46:31 -07:00
2015-09-11 15:05:55 -07:00
patches = [
./fix-pythonpath.patch
./9.0.3-i686-fix.patch
];
2015-06-24 18:25:53 -07:00
})