uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
|
|
@ -0,0 +1,25 @@
|
|||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "3.8";
|
||||
pname = "xtermcontrol";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://thrysoee.dk/xtermcontrol/xtermcontrol-${version}.tar.gz";
|
||||
sha256 = "sha256-Vh6GNiDkjNhaD9U/3fG2LpMLN39L3jRUgG/FQeG1z40=";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Enables dynamic control of xterm properties";
|
||||
longDescription = ''
|
||||
Enables dynamic control of xterm properties.
|
||||
It makes it easy to change colors, title, font and geometry of a running xterm, as well as to report the current settings of these properties.
|
||||
Window manipulations de-/iconify, raise/lower, maximize/restore and reset are also supported.
|
||||
To complete the feature set; xtermcontrol lets advanced users issue any xterm control sequence of their choosing.
|
||||
'';
|
||||
homepage = "http://thrysoee.dk/xtermcontrol";
|
||||
license = lib.licenses.gpl2;
|
||||
platforms = lib.platforms.unix;
|
||||
maintainers = [ lib.maintainers.derchris ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue