nixpkgs/pkgs/applications/misc/teseq/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
510 B
Nix
Raw Normal View History

2021-01-15 05:42:41 +00:00
{ lib, stdenv, fetchurl }:
2018-04-24 09:26:28 +00:00
let
version = "1.1.1";
in
stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "teseq";
inherit version;
2018-04-24 09:26:28 +00:00
src = fetchurl {
url = "mirror://gnu/teseq/teseq-${version}.tar.gz";
sha256 = "08ln005qciy7f3jhv980kfhhfmh155naq59r5ah9crz1q4mx5yrj";
};
meta = {
homepage = "https://www.gnu.org/software/teseq/";
2018-04-24 09:26:28 +00:00
description = "Escape sequence illuminator";
2021-01-15 05:42:41 +00:00
license = lib.licenses.gpl3;
2018-04-24 09:26:28 +00:00
2021-01-15 05:42:41 +00:00
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.vaibhavsagar ];
2018-04-24 09:26:28 +00:00
};
}