Merge pull request #39399 from vaibhavsagar/init-teseq
teseq: init at 1.1.1
This commit is contained in:
commit
97fb4c32f1
2 changed files with 24 additions and 0 deletions
22
pkgs/applications/misc/teseq/default.nix
Normal file
22
pkgs/applications/misc/teseq/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{ stdenv, fetchurl }:
|
||||||
|
|
||||||
|
let
|
||||||
|
version = "1.1.1";
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "teseq-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://gnu/teseq/teseq-${version}.tar.gz";
|
||||||
|
sha256 = "08ln005qciy7f3jhv980kfhhfmh155naq59r5ah9crz1q4mx5yrj";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = https://www.gnu.org/software/teseq/;
|
||||||
|
description = "Escape sequence illuminator";
|
||||||
|
license = stdenv.lib.licenses.gpl3;
|
||||||
|
|
||||||
|
platforms = stdenv.lib.platforms.unix;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.vaibhavsagar ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -21364,6 +21364,8 @@ with pkgs;
|
||||||
|
|
||||||
wire-desktop = callPackage ../applications/networking/instant-messengers/wire-desktop { };
|
wire-desktop = callPackage ../applications/networking/instant-messengers/wire-desktop { };
|
||||||
|
|
||||||
|
teseq = callPackage ../applications/misc/teseq { };
|
||||||
|
|
||||||
# Unix tools
|
# Unix tools
|
||||||
unixtools = recurseIntoAttrs (callPackages ./unix-tools.nix { });
|
unixtools = recurseIntoAttrs (callPackages ./unix-tools.nix { });
|
||||||
inherit (unixtools) hexdump ps logger eject umount
|
inherit (unixtools) hexdump ps logger eject umount
|
||||||
|
|
Loading…
Reference in a new issue