2bb3a9da24
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.
27 lines
716 B
Nix
27 lines
716 B
Nix
{ stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "urxvt-resize-font";
|
|
version = "2019-10-05";
|
|
dontPatchShebangs = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "simmel";
|
|
repo = "urxvt-resize-font";
|
|
rev = "e966a5d77264e9263bfc8a51e160fad24055776b";
|
|
sha256 = "18ab3bsfdkzzh1n9fpi2al5bksvv2b7fjmvxpx6fzqcy4bc64vkh";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/lib/urxvt/perl
|
|
cp resize-font $out/lib/urxvt/perl
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "URxvt Perl extension for resizing the font";
|
|
homepage = "https://github.com/simmel/urxvt-resize-font";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ rnhmjoj ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|