chezmoi: 2.56.0 -> 2.57.0 (#372077)
[NixPkgs.git] / pkgs / by-name / me / merecat / package.nix
blob2a50a431bfb87ee7e7efd6c560b8692da0a96a17
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   autoreconfHook,
6   pkg-config,
7   libconfuse,
8   libxcrypt,
9   testers,
10   merecat,
11   nixosTests,
14 stdenv.mkDerivation (finalAttrs: {
15   pname = "merecat";
16   version = "2.31";
18   # Or, already reconf'd: ftp://ftp.troglobit.com/merecat/merecat-${finalAttrs.version}.tar.xz
19   src = fetchFromGitHub {
20     owner = "troglobit";
21     repo = "merecat";
22     rev = "v${finalAttrs.version}";
23     hash = "sha256-oIzOXUnCFqd3HPyKp58r+enRRpaE7f9hqNITtxCCB7I=";
24   };
26   nativeBuildInputs = [
27     autoreconfHook
28     pkg-config
29   ];
31   buildInputs = [
32     libconfuse
33     libxcrypt
34   ];
36   passthru.tests = {
37     testVersion = testers.testVersion {
38       package = merecat;
39       command = "merecat -V";
40     };
41     inherit (nixosTests) merecat;
42   };
44   meta = with lib; {
45     description = "Small and made-easy HTTP/HTTPS server based on Jef Poskanzer's thttpd";
46     homepage = "https://troglobit.com/projects/merecat/";
47     license = licenses.bsd2;
48     maintainers = with maintainers; [ fgaz ];
49     platforms = platforms.all;
50     # Strange header and/or linker errors
51     broken = stdenv.hostPlatform.isDarwin;
52   };