nixpkgs/pkgs/games/tintin/default.nix
R. RyanTM b85a00ee67 tintin: 2.01.7 -> 2.01.8
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/tintin/versions
2019-07-03 08:30:46 +02:00

25 lines
580 B
Nix

{ stdenv, fetchurl, zlib, pcre }:
stdenv.mkDerivation rec {
name = "tintin-2.01.8";
src = fetchurl {
url = "mirror://sourceforge/tintin/${name}.tar.gz";
sha256 = "056g82yi784mf4gbrida9fxqmz347m2l9vad2ksv2fhl7g553y2s";
};
buildInputs = [ zlib pcre ];
preConfigure = ''
cd src
'';
meta = with stdenv.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;
};
}