13 stdenv.mkDerivation (finalAttrs: {
15 version = "1.0.1-unstable-2022-02-12";
17 src = fetchFromGitLab {
18 owner = "AutumnMeowMeow";
20 rev = "69cc7458ef23243f790348a4cc503a8173008e55";
21 hash = "sha256-Ocb2inuxeDOfqge+h7pHL9I9Kn72Mgi8Eq179/58alk=";
25 # Fix ICH with count>1
26 # https://gitlab.com/AutumnMeowMeow/qodem/-/issues/77
28 url = "https://gitlab.com/-/project/6684464/uploads/c2ceaef82d483c13ff9ec64424f3c40a/0001-Fix-ICH-with-count-1.patch";
29 hash = "sha256-lCqj4p8onUS4pehQMXS6lbC7JH5dP6sOjDALpasgd2M=";
32 # Don't clear line rendition on partial ED
33 # https://gitlab.com/AutumnMeowMeow/qodem/-/issues/78
35 url = "https://gitlab.com/-/project/6684464/uploads/462c0b1cf05c3fc2857ce982e62fefcc/0001-Don-t-clear-line-rendition-on-partial-ED.patch";
36 hash = "sha256-lSuxP0tUfGa3BjK3ehpdMi16XaGZrdVvAcM2vnjAme8=";
39 # DECCOLM should clear line rendition attributes
40 # https://gitlab.com/AutumnMeowMeow/qodem/-/issues/78
42 url = "https://gitlab.com/-/project/6684464/uploads/812bdfdfaee44eed346fcff85f53efbe/0002-DECCOLM-should-clear-line-rendition-attributes.patch";
43 hash = "sha256-XO+h5fpBTLLYC3t4FRCy1uFiMkmSXbre4T2NB/FC3uQ=";
46 # Fix build with miniupnpc 2.2.8
47 ./qodem-fix-miniupnpc-2.2.8.patch
60 ++ lib.optionals (lib.meta.availableOn stdenv.hostPlatform gpm) [
64 configureFlags = lib.optionals (!(lib.meta.availableOn stdenv.hostPlatform gpm)) [
70 enableParallelBuilding = true;
72 __structuredAttrs = true;
75 homepage = "https://qodem.sourceforge.net/";
76 description = "Re-implementation of the DOS-era Qmodem serial communications package";
78 Qodem is a from-scratch clone implementation of the Qmodem
79 communications program made popular in the days when Bulletin Board
80 Systems ruled the night. Qodem emulates the dialing directory and the
81 terminal screen features of Qmodem over both modem and Internet
84 changelog = "${finalAttrs.src.meta.homepage}-/blob/${finalAttrs.src.rev}/ChangeLog";
85 maintainers = with lib.maintainers; [ embr ];
86 sourceProvenance = [ lib.sourceTypes.fromSource ];
87 license = lib.licenses.publicDomain;
88 platforms = lib.platforms.unix;