tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ceph-git: 2015-08-05 -> 2015-08-07
William A. Kennington III
10 years ago
2f620f57
3dbfcdc3
+5
-4
2 changed files
expand all
collapse all
unified
split
pkgs
tools
filesystems
ceph
generic.nix
git.nix
+1
pkgs/tools/filesystems/ceph/generic.nix
···
213
(mkWith true "rgw-user" "rgw")
214
(mkWith true "rgw-group" "rgw")
215
(mkWith true "systemd-unit-dir" "\${out}/etc/systemd/system")
0
216
];
217
218
preBuild = optionalString (versionAtLeast version "9.0.0") ''
···
213
(mkWith true "rgw-user" "rgw")
214
(mkWith true "rgw-group" "rgw")
215
(mkWith true "systemd-unit-dir" "\${out}/etc/systemd/system")
216
+
(mkWith false "selinux" null) # TODO: Implement
217
];
218
219
preBuild = optionalString (versionAtLeast version "9.0.0") ''
+4
-4
pkgs/tools/filesystems/ceph/git.nix
···
1
{ callPackage, fetchgit, ... } @ args:
2
3
callPackage ./generic.nix (args // rec {
4
-
version = "2015-08-05";
5
6
src = fetchgit {
7
-
url = "git://github.com/wkennington/ceph.git";
8
-
rev = "043a780feb973b7ad571bb696437476da3260133";
9
-
sha256 = "02kk24wm6mxsclklsz5zzpj3wm6f341blj2anx3v5x20cixzdnhp";
10
};
11
12
patches = [ ./fix-pythonpath.patch ];
···
1
{ callPackage, fetchgit, ... } @ args:
2
3
callPackage ./generic.nix (args // rec {
4
+
version = "2015-08-07";
5
6
src = fetchgit {
7
+
url = "git://github.com/ceph/ceph.git";
8
+
rev = "dcd6e96495d949066962d1c7e18a9d4188b0fa37";
9
+
sha256 = "1w62xfbcdx2q5wjz2bqlhn4bb1iag8xyhgjc2nklqk7py9lif16m";
10
};
11
12
patches = [ ./fix-pythonpath.patch ];