summary refs log tree commit diff
path: root/pkgs/applications/terminal-emulators/mrxvt
Commit message (Collapse)AuthorAge
* nixos/tests: add passthru.tests to all tested terminal emulatorsJamie McClymont2022-03-20
|
* mrxvt: minor formattingSandro Jäckel2021-11-09
|
* pkgs/applications: rename name to pname&version part 2Felix Buehler2021-11-07
|
* rxvt, mrxvt, eterm: Mark vulnerable to unexpected command executionMartin Weinelt2021-05-18
| | | | https://www.openwall.com/lists/oss-security/2021/05/17/1
* treewide: editorconfig fixeszowoq2021-01-21
| | | | | - add final newline - use spaces for indentation
* treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nixJonathan Ringer2021-01-19
| | | | | | | | | | | | | continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
* treewide: with stdenv.lib; in meta -> with lib;Profpatsch2021-01-11
| | | | | | | | | | | | | | | | | | | 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
* A directory-category for terminal emulatorsAndersonTorres2020-10-28
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.