From e8159ce258ff8e422e985f6161dc9dfde5bbec4c Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Sun, 24 Nov 2024 18:03:44 +0100 Subject: fix(pkgs/ctpv): Override to support more than 16 extensions in preview --- pkgs/by-name/ct/ctpv/package.nix | 45 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 pkgs/by-name/ct/ctpv/package.nix (limited to 'pkgs/by-name/ct/ctpv/package.nix') diff --git a/pkgs/by-name/ct/ctpv/package.nix b/pkgs/by-name/ct/ctpv/package.nix new file mode 100644 index 00000000..48798518 --- /dev/null +++ b/pkgs/by-name/ct/ctpv/package.nix @@ -0,0 +1,45 @@ +{ + lib, + stdenv, + fetchFromGitHub, + makeWrapper, + file, + openssl, +}: +stdenv.mkDerivation rec { + pname = "ctpv"; + version = "1.1"; + + src = fetchFromGitHub { + owner = "NikitaIvanovV"; + repo = pname; + rev = "v${version}"; + hash = "sha256-3BQi4m44hBmPkJBFNCg6d9YKRbDZwLxdzBb/NDWTQP4="; + }; + + nativeBuildInputs = [makeWrapper]; + + buildInputs = [ + file # libmagic + openssl + ]; + + patches = [ + ./allow-up-to-64-types.patch + ]; + + makeFlags = ["PREFIX=$(out)"]; + + preFixup = '' + wrapProgram $out/bin/ctpv \ + --set PATH "${lib.makeBinPath []}"; + ''; + + meta = with lib; { + description = "File previewer for a terminal"; + homepage = "https://github.com/NikitaIvanovV/ctpv"; + license = licenses.mit; + platforms = platforms.linux; + maintainers = [maintainers.wesleyjrz]; + }; +} -- cgit 1.4.1