mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
006e666c12
Semi-automatic update. These checks were performed: - built on NixOS - found 2.01.4 with grep in /nix/store/pbqmal61ij37i421gy0fjrjv7awg3r7p-tintin-2.01.4 - found 2.01.4 in filename of file in /nix/store/pbqmal61ij37i421gy0fjrjv7awg3r7p-tintin-2.01.4 cc "@lovek323"
25 lines
580 B
Nix
25 lines
580 B
Nix
{ stdenv, fetchurl, zlib, pcre }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "tintin-2.01.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/tintin/${name}.tar.gz";
|
|
sha256 = "1g7bh8xs1ml0iyraps3a3dzaycci922y7fk5j0wyr4ssyjzsy8nx";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|