nixpkgs/pkgs/applications/misc/sdcv/default.nix
Artturin f9fdf2d402 treewide: move NIX_CFLAGS_COMPILE to the env attrset
with structuredAttrs lists will be bash arrays which cannot be exported
which will be a issue with some patches and some wrappers like cc-wrapper

this makes it clearer that NIX_CFLAGS_COMPILE must be a string as lists
in env cause a eval failure
2023-02-22 21:23:04 +02:00

32 lines
768 B
Nix

{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, glib, gettext, readline }:
stdenv.mkDerivation rec {
pname = "sdcv";
version = "0.5.4";
src = fetchFromGitHub {
owner = "Dushistov";
repo = "sdcv";
rev = "v${version}";
sha256 = "sha256-i6odmnkoSqDIQAor7Dn26Gu+td9aeMIkwsngF7beBtE=";
};
hardeningDisable = [ "format" ];
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ glib gettext readline ];
preInstall = ''
mkdir locale
'';
env.NIX_CFLAGS_COMPILE = "-D__GNU_LIBRARY__";
meta = with lib; {
homepage = "https://dushistov.github.io/sdcv/";
description = "Console version of StarDict";
maintainers = with maintainers; [ lovek323 ];
license = licenses.gpl2;
platforms = platforms.unix;
};
}