summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/emulators/tilem
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2022-02-15 23:28:16 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2022-02-16 01:38:20 -0300
commit8d65e832f0a18f60e2040940c80d96373ac8b88c (patch)
tree3d6ade66b2a81403e3852b80b9e7c660699b6ed6 /pkgs/applications/emulators/tilem
parent19574af0af3ffaf7c9e359744ed32556f34536bd (diff)
Move misc/emulators to applications/emulators - part 1
Emulators form a class by themselves. So, they should be moved to applications/.
Diffstat (limited to 'pkgs/applications/emulators/tilem')
-rw-r--r--pkgs/applications/emulators/tilem/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/applications/emulators/tilem/default.nix b/pkgs/applications/emulators/tilem/default.nix
new file mode 100644
index 000000000000..bde706e23040
--- /dev/null
+++ b/pkgs/applications/emulators/tilem/default.nix
@@ -0,0 +1,30 @@
+{ stdenv
+, fetchurl
+, lib
+, pkg-config
+, glib
+, gtk2
+, libticonv
+, libtifiles2
+, libticables2
+, libticalcs2
+}:
+
+stdenv.mkDerivation rec {
+ pname = "tilem";
+ version = "2.0";
+ src = fetchurl {
+ url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.bz2";
+ sha256 = "1ba38xzhp3yf21ip3cgql6jzy49jc34sfnjsl4syxyrd81d269zw";
+ };
+ nativeBuildInputs = [ pkg-config ];
+ buildInputs = [ glib gtk2 libticonv libtifiles2 libticables2 libticalcs2 ];
+ NIX_CFLAGS_COMPILE = [ "-lm" ];
+ meta = with lib; {
+ homepage = "http://lpg.ticalc.org/prj_tilem/";
+ description = "Emulator and debugger for Texas Instruments Z80-based graphing calculators";
+ license = licenses.gpl3Plus;
+ maintainers = with maintainers; [ siraben luc65r ];
+ platforms = platforms.linux ++ platforms.darwin;
+ };
+}