Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4c024d6368f2
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: bf20713a633a
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Mar 13, 2019

  1. vttest: init at 20190105

    dtzWill committed Mar 13, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    greg-1-anderson Greg Anderson
    Copy the full SHA
    61cf43e View commit details

Commits on Mar 14, 2019

  1. Merge pull request #57606 from dtzWill/feature/vttest

    vttest: init at 20190105
    dtzWill authored Mar 14, 2019
    Copy the full SHA
    bf20713 View commit details
Showing with 24 additions and 0 deletions.
  1. +22 −0 pkgs/tools/misc/vttest/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
22 changes: 22 additions & 0 deletions pkgs/tools/misc/vttest/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
pname = "vttest";
version = "20190105";

src = fetchurl {
urls = [
"https://invisible-mirror.net/archives/${pname}/${pname}-${version}.tgz"
"ftp://ftp.invisible-island.net/${pname}/${pname}-${version}.tgz"
];
sha256 = "0wagaywzc6pq59m8gpcblag7gyjjarc0qx050arr1sy8hd3yy0sp";
};

meta = with stdenv.lib; {
description = "Tests the compatibility so-called 'VT100-compatible' terminals";
homepage = https://invisible-island.net/vttest/;
license = licenses.mit;
platforms = platforms.all;
};
}

2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -23060,6 +23060,8 @@ in

vokoscreen = libsForQt5.callPackage ../applications/video/vokoscreen { };

vttest = callPackage ../tools/misc/vttest { };

wavegain = callPackage ../applications/audio/wavegain { };

wcalc = callPackage ../applications/misc/wcalc { };