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: 1f57d5e060e0
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6695fdc96149
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Apr 24, 2020

  1. ttyd: 1.5.2 -> 1.6.0

    iblech authored and thoughtpolice committed Apr 24, 2020

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    6695fdc View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/servers/ttyd/default.nix
8 changes: 4 additions & 4 deletions pkgs/servers/ttyd/default.nix
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
{ stdenv, fetchFromGitHub
, pkgconfig, cmake, xxd
, openssl, libwebsockets, json_c, libuv
, openssl, libwebsockets, json_c, libuv, zlib
}:

with builtins;

stdenv.mkDerivation rec {
pname = "ttyd";
version = "1.5.2";
version = "1.6.0";
src = fetchFromGitHub {
owner = "tsl0922";
repo = pname;
rev = "refs/tags/${version}";
sha256 = "16nngc3dqrsgpapzvl34c0msgdd1fyp3k8r1jj1m9bch6z2p50bl";
sha256 = "08skw3h897jb71sbnglj571h35pcb1mikzlh71sx5imjgi4hfczr";
};

nativeBuildInputs = [ pkgconfig cmake xxd ];
buildInputs = [ openssl libwebsockets json_c libuv ];
buildInputs = [ openssl libwebsockets json_c libuv zlib ];
enableParallelBuilding = true;

outputs = [ "out" "man" ];