about summary refs log tree commit diff
path: root/pkgs/applications/terminal-emulators/x3270
AgeCommit message (Collapse)AuthorFilesLines
2024-04-27x3270: 4.0ga9 -> 4.3ga8Scott Windsor1-18/+51
* upgrade to latest release * fixes broken darwin build by adding dependancies * disables x11 build for darwin * adds man page installation Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2022-10-15Merge master into staging-nextgithub-actions[bot]1-1/+1
2022-10-12pkgs.applications: remove unused argsMarkus S. Wamser1-1/+1
2022-10-10treewide: *Flags convert to list from strArtturin1-1/+1
*Flags implies a list slightly relevant: > stdenv: start deprecating non-list configureFlags https://github.com/NixOS/nixpkgs/pull/173172 the makeInstalledTests function in `nixos/tests/installed-tests/default.nix` isn't available outside of nixpkgs so it's not a breaking change
2021-01-11treewide: with stdenv.lib; in meta -> with lib;Profpatsch1-2/+2
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2020-10-28A directory-category for terminal emulatorsAndersonTorres1-0/+44
This is a mostly cosmetical commit, in the sense it doesn't change the contents of any package, but reorganizes the overall Nixpkgs expressions. Terminal emulators are an ubiquitous tool for any Unix user; even the beginners are routinely familiarized to it. And, manifestly, there are many implementations of terminal emulators out there, from those traditionally made in C and C++ to those written in Haskell and Go. Terminal emulators deserve more highlight. This commit does that by creating a category for them.