about summary refs log tree commit diff stats
path: root/pkgs/by-name/ct/ctpv/package.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/by-name/ct/ctpv/package.nix')
-rw-r--r--pkgs/by-name/ct/ctpv/package.nix45
1 files changed, 45 insertions, 0 deletions
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];
+  };
+}