about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/graphics/oculante
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/graphics/oculante')
-rw-r--r--nixpkgs/pkgs/applications/graphics/oculante/default.nix83
1 files changed, 83 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/graphics/oculante/default.nix b/nixpkgs/pkgs/applications/graphics/oculante/default.nix
new file mode 100644
index 000000000000..d6f8c1d641cb
--- /dev/null
+++ b/nixpkgs/pkgs/applications/graphics/oculante/default.nix
@@ -0,0 +1,83 @@
+{ lib
+, rustPlatform
+, fetchFromGitHub
+, cmake
+, pkg-config
+, openssl
+, fontconfig
+, nasm
+, libX11
+, libXcursor
+, libXrandr
+, libXi
+, libGL
+, libxkbcommon
+, wayland
+, stdenv
+, gtk3
+, darwin
+, perl
+, wrapGAppsHook
+}:
+
+rustPlatform.buildRustPackage rec {
+  pname = "oculante";
+  version = "0.8.13";
+
+  src = fetchFromGitHub {
+    owner = "woelper";
+    repo = "oculante";
+    rev = version;
+    hash = "sha256-RbRvV3OkRZXc0n7qGzqbBtbU81wFc+/Ohg9pbVqdsw4=";
+  };
+
+  cargoHash = "sha256-qt4bHCHpiP6yOce9hquVVlLFF906ADwhss4xAP9E0fA=";
+
+  nativeBuildInputs = [
+    cmake
+    pkg-config
+    nasm
+    perl
+    wrapGAppsHook
+  ];
+
+  checkFlagsArray = [ "--skip=tests::net" ]; # requires network access
+
+  buildInputs = [
+    openssl
+    fontconfig
+  ] ++ lib.optionals stdenv.isLinux [
+    libGL
+    libX11
+    libXcursor
+    libXi
+    libXrandr
+    gtk3
+
+    libxkbcommon
+    wayland
+  ] ++ lib.optionals stdenv.isDarwin [
+    darwin.libobjc
+  ];
+
+  checkFlags = [
+    "--skip=bench"
+  ];
+
+  postInstall = ''
+    install -Dm444 $src/res/oculante.png -t $out/share/icons/hicolor/128x128/apps/
+    install -Dm444 $src/res/oculante.desktop -t $out/share/applications
+    wrapProgram $out/bin/oculante \
+      --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [libGL]}
+  '';
+
+  meta = with lib; {
+    broken = stdenv.isDarwin;
+    description = "A minimalistic crossplatform image viewer written in Rust";
+    homepage = "https://github.com/woelper/oculante";
+    changelog = "https://github.com/woelper/oculante/blob/${version}/CHANGELOG.md";
+    license = licenses.mit;
+    mainProgram = "oculante";
+    maintainers = with maintainers; [ dit7ya figsoda ];
+  };
+}