From 80372557415a2671584458be4d02cd60bcee0641 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Thu, 30 Jun 2022 14:32:42 +0200 Subject: pkgs/stardict: add stardict itself It seems to not be able to find translations but I am not using it anyway. I have it just for completeness. --- pkgs/sdcv/wrapper.nix | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 pkgs/sdcv/wrapper.nix (limited to 'pkgs/sdcv/wrapper.nix') diff --git a/pkgs/sdcv/wrapper.nix b/pkgs/sdcv/wrapper.nix deleted file mode 100644 index e26c58c..0000000 --- a/pkgs/sdcv/wrapper.nix +++ /dev/null @@ -1,37 +0,0 @@ -{ lib, stdenv, makeBinaryWrapper -, sdcv-unwrapped -}: - -with sdcv-unwrapped; - -let - - drv = stdenv.mkDerivation rec { - inherit pname; - inherit version; - inherit meta; - - nativeBuildInputs = [ sdcv-unwrapped makeBinaryWrapper ]; - dictionaries = [ /* empty and expecting override */ ]; - - phases = [ "installPhase" ]; - installPhase = '' - mkdir -p $out/bin $out/usr/share/stardict/dic - for dic in $dictionaries; do - for path in "$dic"/usr/share/stardict/dic/*; do - [ -f "$path" ] || continue - outln="$out/usr/share/stardict/dic/${"$"}{path##*/}" - [ -e "$outln" ] && continue - ln -sf "$path" "$outln" - done - done - makeWrapper ${sdcv-unwrapped}/bin/sdcv $out/bin/sdcv \ - --set STARDICT_DATA_DIR $out/usr/share/stardict/dic - ''; - - passthru.withDictionaries = dicts: drv.overrideAttrs (oldAttrs: { - dictionaries = dicts; - }); - }; - -in drv -- cgit v1.2.3