nixpkgs/pkgs/servers/dict/libmaa.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
556 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, libtool }:
stdenv.mkDerivation rec {
version = "1.3.2";
pname = "libmaa";
src = fetchurl {
url = "mirror://sourceforge/dict/libmaa-${version}.tar.gz";
sha256 = "1idi4c30pi79g5qfl7rr9s17krbjbg93bi8f2qrbsdlh78ga19ar";
};
buildInputs = [ libtool ];
2019-03-24 20:47:56 +01:00
# configureFlags = [ "--datadir=/run/current-system/share/dictd" ];
2019-01-11 14:06:32 +01:00
NIX_CFLAGS_COMPILE = "-Wno-error=format-truncation";
meta = with lib; {
description = "Dict protocol server and client";
maintainers = [ ];
platforms = platforms.linux;
};
}