4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
31 lines
815 B
Nix
31 lines
815 B
Nix
{ stdenv, fetchurl, lib, zlib, pcre
|
|
, tlsSupport ? true, gnutls ? null
|
|
# ^ set { tlsSupport = false; } to reduce closure size by ~= 18.6 MB
|
|
}:
|
|
|
|
assert tlsSupport -> gnutls != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "tintin-2.02.03";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/tintin/${name}.tar.gz";
|
|
sha256 = "0ybgy8j8i36d7f892x539vl6fl5zvvfyy5ffc98550vjr6qqhk74";
|
|
};
|
|
|
|
nativeBuildInputs = lib.optional tlsSupport gnutls.dev;
|
|
buildInputs = [ zlib pcre ] ++ lib.optional tlsSupport gnutls;
|
|
|
|
preConfigure = ''
|
|
cd src
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A free MUD client for macOS, Linux and Windows";
|
|
homepage = "http://tintin.sourceforge.net";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|