Skip to content

Instantly share code, notes, and snippets.

@corpix
Created April 26, 2024 01:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save corpix/3d020b321f39694b0c347f329ce58145 to your computer and use it in GitHub Desktop.
Save corpix/3d020b321f39694b0c347f329ce58145 to your computer and use it in GitHub Desktop.
{ lib, stdenv, fetchFromGitHub, pkg-config, autoconf, automake
, libtool, nettle, gnutls, gettext, libabigail
}:
stdenv.mkDerivation rec {
pname = "radcli";
version = "1.3.1";
src = fetchFromGitHub {
owner = "radcli";
repo = "radcli";
rev = version;
sha256 = "sha256-KBgimvhuHvaVh9hxPr+CtibGWyscSi0KXk8S1/STk+Q=";
};
nativeBuildInputs = [ pkg-config autoconf automake gettext ];
buildInputs = [ libtool nettle gnutls libabigail ];
preConfigure = ''
./autogen.sh
'';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment