forked from mirrors/nixpkgs
teseq: init at 1.1.1
This commit is contained in:
parent
62529a693b
commit
847196143d
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 { };
|
||||
|
||||
teseq = callPackage ../applications/misc/teseq { };
|
||||
|
||||
# Unix tools
|
||||
unixtools = recurseIntoAttrs (callPackages ./unix-tools.nix { });
|
||||
inherit (unixtools) hexdump ps logger eject umount
|
||||
|
|
Loading…
Reference in a new issue