Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / emulators / tilem / default.nix
blobc9ba0067ee746994bf04d6cca34d2666d5203972
1 { stdenv
2 , fetchurl
3 , lib
4 , pkg-config
5 , glib
6 , gtk2
7 , libticonv
8 , libtifiles2
9 , libticables2
10 , libticalcs2
13 stdenv.mkDerivation rec {
14   pname = "tilem";
15   version = "2.0";
16   src = fetchurl {
17     url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.bz2";
18     sha256 = "1ba38xzhp3yf21ip3cgql6jzy49jc34sfnjsl4syxyrd81d269zw";
19   };
20   nativeBuildInputs = [ pkg-config ];
21   buildInputs = [ glib gtk2 libticonv libtifiles2 libticables2 libticalcs2 ];
22   env.NIX_CFLAGS_COMPILE = toString [ "-lm" ];
23   meta = with lib; {
24     homepage = "http://lpg.ticalc.org/prj_tilem/";
25     description = "Emulator and debugger for Texas Instruments Z80-based graphing calculators";
26     license = licenses.gpl3Plus;
27     maintainers = with maintainers; [ siraben luc65r ];
28     platforms = platforms.linux ++ platforms.darwin;
29   };