nixpkgs/pkgs/by-name/ca/catgirl/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
1.1 KiB
Nix
Raw Normal View History

2021-08-17 02:42:11 +00:00
{ ctags, fetchurl, lib, libressl, ncurses, pkg-config, stdenv }:
2021-03-26 20:58:40 +00:00
stdenv.mkDerivation rec {
pname = "catgirl";
version = "2.2a";
2021-03-26 20:58:40 +00:00
src = fetchurl {
url = "https://git.causal.agency/catgirl/snapshot/${pname}-${version}.tar.gz";
hash = "sha256-xtdgqu4TTgUlht73qRA1Q/coH95lMfvLQQhkcHlCl8I=";
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 = "TLS-only terminal IRC client";
platforms = platforms.unix;
2023-09-25 11:44:45 +00:00
mainProgram = "catgirl";
2021-03-26 20:58:40 +00:00
maintainers = with maintainers; [ xfnw ];
};
}