biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / misc / sdcv / default.nix
blob206ca96d01002ecec3fcd3db1afb695aee111e38
1 { lib, stdenv, fetchFromGitHub, cmake, pkg-config, glib, gettext, readline }:
3 stdenv.mkDerivation rec {
4   pname = "sdcv";
5   version = "0.5.5";
7   src = fetchFromGitHub {
8     owner = "Dushistov";
9     repo = "sdcv";
10     rev = "v${version}";
11     sha256 = "sha256-EyvljVXhOsdxIYOGTzD+T16nvW7/RNx3DuQ2OdhjXJ4=";
12   };
14   hardeningDisable = [ "format" ];
15   nativeBuildInputs = [ cmake pkg-config ];
16   buildInputs = [ glib gettext readline ];
18   preInstall = ''
19     mkdir locale
20   '';
22   env.NIX_CFLAGS_COMPILE = "-D__GNU_LIBRARY__";
24   meta = with lib; {
25     homepage = "https://dushistov.github.io/sdcv/";
26     description = "Console version of StarDict";
27     maintainers = with maintainers; [ lovek323 ];
28     license = licenses.gpl2;
29     platforms = platforms.unix;
30     mainProgram = "sdcv";
31   };