about summary refs log tree commit diff
path: root/pkgs/tools/filesystems/ceph
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2015-11-19 14:21:07 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2015-11-19 14:25:16 +0100
commitaab90653af4b85ed4f85078d7069c5ee33ada4ae (patch)
tree8c24a291ceae27e3e78b79e1d6b03aa00e750ef4 /pkgs/tools/filesystems/ceph
parentadde71ea6eae60cee2f9c7768b5ecaf75a1642df (diff)
ceph: Don't use symlinks
No need to invent an ad-hoc symlink scheme when we can handle this
kind of indirection at the Nix expression level (e.g. by doing
"ceph-dev = ceph").
Diffstat (limited to 'pkgs/tools/filesystems/ceph')
-rw-r--r--pkgs/tools/filesystems/ceph/9.nix13
-rw-r--r--[l---------]pkgs/tools/filesystems/ceph/default.nix14
l---------pkgs/tools/filesystems/ceph/dev.nix1
3 files changed, 13 insertions, 15 deletions
diff --git a/pkgs/tools/filesystems/ceph/9.nix b/pkgs/tools/filesystems/ceph/9.nix
deleted file mode 100644
index a82867e59a21a..0000000000000
--- a/pkgs/tools/filesystems/ceph/9.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-{ callPackage, fetchgit, ... } @ args:
-
-callPackage ./generic.nix (args // rec {
-  version = "9.2.0";
-
-  src = fetchgit {
-    url = "https://github.com/ceph/ceph.git";
-    rev = "refs/tags/v${version}";
-    sha256 = "1lcal0jbpnm6y91s2v0g2zdnq7q0i5ql4bky294cz7g011di12vc";
-  };
-
-  patches = [ ./fix-pythonpath.patch ];
-})
diff --git a/pkgs/tools/filesystems/ceph/default.nix b/pkgs/tools/filesystems/ceph/default.nix
index 0f6f2dfda1d1b..a82867e59a21a 120000..100644
--- a/pkgs/tools/filesystems/ceph/default.nix
+++ b/pkgs/tools/filesystems/ceph/default.nix
@@ -1 +1,13 @@
-9.nix
\ No newline at end of file
+{ callPackage, fetchgit, ... } @ args:
+
+callPackage ./generic.nix (args // rec {
+  version = "9.2.0";
+
+  src = fetchgit {
+    url = "https://github.com/ceph/ceph.git";
+    rev = "refs/tags/v${version}";
+    sha256 = "1lcal0jbpnm6y91s2v0g2zdnq7q0i5ql4bky294cz7g011di12vc";
+  };
+
+  patches = [ ./fix-pythonpath.patch ];
+})
diff --git a/pkgs/tools/filesystems/ceph/dev.nix b/pkgs/tools/filesystems/ceph/dev.nix
deleted file mode 120000
index 0f6f2dfda1d1b..0000000000000
--- a/pkgs/tools/filesystems/ceph/dev.nix
+++ /dev/null
@@ -1 +0,0 @@
-9.nix
\ No newline at end of file