9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
31 lines
756 B
Nix
31 lines
756 B
Nix
{ lib, stdenv, fetchFromGitHub
|
|
, pkg-config, cmake, xxd
|
|
, openssl, libwebsockets, json_c, libuv, zlib
|
|
}:
|
|
|
|
with builtins;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ttyd";
|
|
version = "1.6.1";
|
|
src = fetchFromGitHub {
|
|
owner = "tsl0922";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
sha256 = "1ifgw93g8jaaa6fgfqjnn83n5ccr6l72ynwwwa97hfwjk90r14fg";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config cmake xxd ];
|
|
buildInputs = [ openssl libwebsockets json_c libuv zlib ];
|
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
meta = {
|
|
description = "Share your terminal over the web";
|
|
homepage = "https://github.com/tsl0922/ttyd";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.thoughtpolice ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|