3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/irc/catgirl/default.nix

36 lines
1.1 KiB
Nix
Raw Normal View History

2021-08-17 03:42:11 +01:00
{ ctags, fetchurl, lib, libressl, ncurses, pkg-config, stdenv }:
2021-03-26 20:58:40 +00:00
stdenv.mkDerivation rec {
pname = "catgirl";
2021-12-12 23:16:16 +00:00
version = "2.0";
2021-03-26 20:58:40 +00:00
src = fetchurl {
url = "https://git.causal.agency/catgirl/snapshot/${pname}-${version}.tar.gz";
2021-12-12 23:16:16 +00:00
sha256 = "sha256-rk6nvfyaFxJ/7JN92L5tDraTngffVb6u/U7dbNjK9jI=";
2021-03-26 20:58:40 +00:00
};
# catgirl's configure script uses pkg-config --variable exec_prefix openssl
# to discover the install location of the openssl(1) utility. exec_prefix
# is the "out" output of libressl in our case (where the libraries are
# installed), so we need to fix this up.
postConfigure = ''
substituteInPlace config.mk --replace \
"$($PKG_CONFIG --variable exec_prefix openssl)" \
"${lib.getBin libressl}"
'';
2021-03-26 20:58:40 +00:00
nativeBuildInputs = [ ctags pkg-config ];
buildInputs = [ libressl ncurses ];
2021-03-26 20:58:40 +00:00
strictDeps = true;
enableParallelBuilding = true;
2021-03-26 20:58:40 +00:00
meta = with lib; {
homepage = "https://git.causal.agency/catgirl/about/";
license = licenses.gpl3Plus;
description = "A TLS-only terminal IRC client";
platforms = platforms.unix;
maintainers = with maintainers; [ xfnw ];
};
}