about summary refs log tree commit diff
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2016-12-28 10:24:11 +0000
committerGitHub <noreply@github.com>2016-12-28 10:24:11 +0000
commit400886f3d0960cda5ef03c5375848800df0721fb (patch)
treed6474b0297be4db178133df51bf48cb3d19662f7 /pkgs/tools/misc
parente65cccb7768249190026ec1e7e64369db09267c3 (diff)
parent1c8cb703a6934ac37bbc8d08cc9e8a6ff792076c (diff)
downloadnixlib-400886f3d0960cda5ef03c5375848800df0721fb.tar
nixlib-400886f3d0960cda5ef03c5375848800df0721fb.tar.gz
nixlib-400886f3d0960cda5ef03c5375848800df0721fb.tar.bz2
nixlib-400886f3d0960cda5ef03c5375848800df0721fb.tar.lz
nixlib-400886f3d0960cda5ef03c5375848800df0721fb.tar.xz
nixlib-400886f3d0960cda5ef03c5375848800df0721fb.tar.zst
nixlib-400886f3d0960cda5ef03c5375848800df0721fb.zip
Merge pull request #19854 from andjscott/mlocate
[WIP] mlocate: init at version 0.26
Diffstat (limited to 'pkgs/tools/misc')
-rw-r--r--pkgs/tools/misc/mlocate/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/tools/misc/mlocate/default.nix b/pkgs/tools/misc/mlocate/default.nix
new file mode 100644
index 000000000000..6dbd0bcc439a
--- /dev/null
+++ b/pkgs/tools/misc/mlocate/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  name = "mlocate-${version}";
+  version = "0.26";
+
+  src = fetchurl {
+    url = "http://fedorahosted.org/releases/m/l/mlocate/${name}.tar.xz";
+    sha256 = "0gi6y52gkakhhlnzy0p6izc36nqhyfx5830qirhvk3qrzrwxyqrh";
+  };
+
+  buildInputs = [ ];
+
+  meta = with stdenv.lib; {
+    description = "Merging locate is an utility to index and quickly search for files";
+    homepage = https://fedorahosted.org/mlocate/;
+    license = licenses.gpl2;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ ];
+  };
+}