librewolf: 132.0.1 -> 132.0.1-1 (#355483)
[NixPkgs.git] / pkgs / by-name / ml / mlmmj / package.nix
blob76ce2d011599869149b5721b5b89f94757724655
2   lib,
3   stdenv,
4   fetchFromGitea,
5   autoreconfHook,
6   atf,
7   pkg-config,
8   kyua,
9 }:
10 stdenv.mkDerivation rec {
11   pname = "mlmmj";
12   version = "1.4.7";
14   src = fetchFromGitea {
15     domain = "codeberg.org";
16     owner = pname;
17     repo = pname;
18     rev = "refs/tags/RELEASE_" + lib.replaceStrings ["."] ["_"] version;
19     hash = "sha256-QetxCxny9elPetKuAsgKF0xTov1bNIRxi7gWhv6dYyU=";
20   };
22   nativeBuildInputs = [autoreconfHook atf pkg-config kyua];
24   configureFlags = lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
25     # AC_FUNC_MALLOC is broken on cross builds.
26     "ac_cv_func_malloc_0_nonnull=yes"
27     "ac_cv_func_realloc_0_nonnull=yes"
28   ];
30   postInstall = ''
31     # grab all documentation files
32     docfiles=$(find -maxdepth 1 -name "[[:upper:]][[:upper:]]*")
33     install -vDm 644 -t $out/share/doc/mlmmj/ $docfiles
34   '';
36   meta = with lib; {
37     homepage = "http://mlmmj.org";
38     description = "Mailing List Management Made Joyful";
39     maintainers = [maintainers.edwtjo];
40     platforms = platforms.linux;
41     license = licenses.mit;
42   };