forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git] / pkgs / servers / dict / libmaa.nix
blob9b31732ed124acae0ede75f59fce9ed03dc1656d
1 { lib, stdenv, fetchurl, libtool }:
3 stdenv.mkDerivation rec {
4   version = "1.3.2";
5   pname = "libmaa";
7   src = fetchurl {
8     url = "mirror://sourceforge/dict/libmaa-${version}.tar.gz";
9     sha256 = "1idi4c30pi79g5qfl7rr9s17krbjbg93bi8f2qrbsdlh78ga19ar";
10   };
12   buildInputs = [ libtool ];
13   # configureFlags = [ "--datadir=/run/current-system/share/dictd" ];
15   env.NIX_CFLAGS_COMPILE = "-Wno-error=format-truncation";
17   meta = with lib; {
18     description = "Provides many low-level data structures which are helpful for writing compilers";
19     license = licenses.gpl2Plus;
20     maintainers = with maintainers; [ sikmir ];
21     platforms = platforms.unix;
22   };