nixpkgs/pkgs/applications/networking/irc/catgirl/default.nix

34 lines
1.1 KiB
Nix
Raw Normal View History

2021-08-17 04:42:11 +02:00
{ ctags, fetchurl, lib, libressl, ncurses, pkg-config, stdenv }:
2021-03-26 21:58:40 +01:00
stdenv.mkDerivation rec {
pname = "catgirl";
2021-08-17 04:42:11 +02:00
version = "1.9a";
2021-03-26 21:58:40 +01:00
src = fetchurl {
url = "https://git.causal.agency/catgirl/snapshot/${pname}-${version}.tar.gz";
2021-08-17 04:42:11 +02:00
sha256 = "sha256-MEm5mrrWfNp+mBHFjGSOGvvfvBJ+Ho/K+mPUxzJDkV0=";
2021-03-26 21:58:40 +01: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 21:58:40 +01:00
nativeBuildInputs = [ ctags pkg-config ];
buildInputs = [ libressl ncurses ];
2021-03-26 21:58:40 +01:00
strictDeps = true;
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 ];
};
}