{ lib , stdenv , darwin # Fetchers , fetchFromGitHub # Build inputs , cmake , pkg-config , iconv , pcre , readline , glib , zlib , ... }: stdenv.mkDerivation rec { pname = "sdcv"; version = "0.5.5"; src = fetchFromGitHub { owner = "Dushistov"; repo = pname; rev = "v${version}"; hash = "sha256-EyvljVXhOsdxIYOGTzD+T16nvW7/RNx3DuQ2OdhjXJ4="; }; nativeBuildInputs = [ pkg-config cmake iconv ]; buildInputs = [ pcre readline glib zlib ]; cmakeFlags = [ # BUG: does not exit "-DENABLE_NLS=OFF" ]; meta = with lib; { description = "Console version of StarDict"; homepage = "https://github.com/Dushistov/sdcv"; license = licenses.gpl2; # maintainers = with maintainers; [ reo101 ]; }; }