about summary refs log tree commit diff
path: root/pkgs/applications/misc/prevo/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/misc/prevo/default.nix')
-rw-r--r--pkgs/applications/misc/prevo/default.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/pkgs/applications/misc/prevo/default.nix b/pkgs/applications/misc/prevo/default.nix
deleted file mode 100644
index 45f5889d4d5db..0000000000000
--- a/pkgs/applications/misc/prevo/default.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{ lib, symlinkJoin, prevo-tools, prevo-data, makeWrapper }:
-
-symlinkJoin rec {
-  name = "prevo-${version}";
-  inherit (prevo-tools) version;
-
-  paths = [ prevo-tools ];
-
-  nativeBuildInputs = [ makeWrapper ];
-
-  postBuild = ''
-    wrapProgram $out/bin/prevo \
-      --prefix XDG_DATA_DIRS : "${prevo-data}/share"
-  '';
-
-  meta = with lib; {
-    description = "offline version of the Esperanto dictionary Reta Vortaro";
-    longDescription = ''
-      PReVo is the "portable" ReVo, i.e., the offline version
-      of the Esperanto dictionary Reta Vortaro.
-    '';
-    homepage = "https://github.com/bpeel/prevodb";
-    license = licenses.gpl2Only;
-    maintainers = [ maintainers.das-g ];
-    platforms = platforms.linux;
-  };
-}