2022-11-28T10:35:50 fnc 0.12 -> 0.13 https://repology.org/metapackage/fnc/versions 2022-11-28T10:35:52 attrpath: fnc 2022-11-28T10:35:52 Checking auto update branch... 2022-11-28T10:35:52 No auto update branch exists 2022-11-28T10:35:53 Old version 0.12" not present in master derivation file with contents: { lib, fetchurl, fetchpatch, stdenv, zlib, ncurses, libiconv }: stdenv.mkDerivation rec { pname = "fnc"; version = "0.13"; src = fetchurl { url = "https://fnc.bsdbox.org/tarball/${version}/fnc-${version}.tar.gz"; sha256 = "126aklsjfqmrj0f9p1g6sdlqhwnbfhyn0lq2c9pidfnhppa7sz95"; }; buildInputs = [ libiconv ncurses zlib ]; makeFlags = [ "PREFIX=$(out)" ]; preInstall = '' mkdir -p $out/bin ''; meta = with lib; { description = "Interactive ncurses browser for Fossil repositories"; longDescription = '' An interactive ncurses browser for Fossil repositories. fnc uses libfossil to create a fossil ui experience in the terminal. ''; homepage = "https://fnc.bsdbox.org"; license = licenses.isc; platforms = platforms.all; maintainers = with maintainers; [ abbe ]; }; }