nixpkgs/pkgs/applications/graphics/emulsion/default.nix

78 lines
1.4 KiB
Nix
Raw Normal View History

2020-12-28 20:14:17 +00:00
{ stdenv
, lib
, fetchFromGitHub
, rustPlatform
, installShellFiles
, makeWrapper
, pkg-config
, python3
, libGL
, libX11
, libXcursor
, libXi
, libXrandr
, libXxf86vm
, libxcb
, libxkbcommon
, wayland
, AppKit
, CoreGraphics
, CoreServices
, Foundation
, OpenGL
}:
let
rpathLibs = [
libGL
libX11
libXcursor
libXi
libXrandr
libXxf86vm
libxcb
] ++ lib.optionals stdenv.isLinux [
libxkbcommon
wayland
];
in
rustPlatform.buildRustPackage rec {
pname = "emulsion";
2021-01-18 15:51:08 +00:00
version = "8.0";
2020-12-28 20:14:17 +00:00
src = fetchFromGitHub {
owner = "ArturKovacs";
repo = pname;
rev = "v${version}";
2021-01-18 15:51:08 +00:00
sha256 = "sha256-xv3q59HobunrFyc+CPLztpsQd20Eu4+JI+iYhlGI0bc=";
2020-12-28 20:14:17 +00:00
};
cargoSha256 = "sha256-+jJMi3uBpvKYegURFyAV3TfP8eX4xRxgL4WGew7WMws=";
2020-12-28 20:14:17 +00:00
nativeBuildInputs = [
installShellFiles
makeWrapper
pkg-config
python3
];
buildInputs = rpathLibs ++ lib.optionals stdenv.isDarwin [
AppKit
CoreGraphics
CoreServices
Foundation
OpenGL
];
postFixup = lib.optionalString stdenv.isLinux ''
patchelf --set-rpath "${lib.makeLibraryPath rpathLibs}" $out/bin/emulsion
2020-12-28 20:14:17 +00:00
'';
meta = with lib; {
description = "A fast and minimalistic image viewer";
homepage = "https://arturkovacs.github.io/emulsion-website/";
maintainers = [ maintainers.magnetophon ];
platforms = platforms.unix;
license = licenses.mit;
};
}