mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 19:14:14 +00:00
105 lines
2.1 KiB
Nix
105 lines
2.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
appstream,
|
|
blueprint-compiler,
|
|
cargo,
|
|
dav1d,
|
|
desktop-file-utils,
|
|
fetchFromGitLab,
|
|
glib,
|
|
gst_all_1,
|
|
gtk4,
|
|
lcms,
|
|
libadwaita,
|
|
libseccomp,
|
|
libwebp,
|
|
meson,
|
|
ninja,
|
|
nix-update-script,
|
|
pkg-config,
|
|
rustPlatform,
|
|
rustc,
|
|
versionCheckHook,
|
|
wrapGAppsHook4,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "identity";
|
|
version = "0.7.0";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.gnome.org";
|
|
owner = "YaLTeR";
|
|
repo = "identity";
|
|
rev = "refs/tags/v${finalAttrs.version}";
|
|
hash = "sha256-h8/mWGuosBiQRpoW8rINJht/7UBVEnUnTKY5HBCAyw4=";
|
|
};
|
|
|
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
|
inherit (finalAttrs) pname version src;
|
|
hash = "sha256-oO7l4zVKR93fFLqkY67DfzrAA9kUN06ov9ogwDuaVlE=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
appstream
|
|
blueprint-compiler
|
|
cargo
|
|
desktop-file-utils # for `desktop-file-validate`
|
|
glib # for `glib-compile-schemas`
|
|
gtk4 # for `gtk-update-icon-cache`
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
rustPlatform.cargoCheckHook
|
|
rustPlatform.cargoSetupHook
|
|
rustc
|
|
wrapGAppsHook4
|
|
];
|
|
|
|
buildInputs = [
|
|
dav1d
|
|
gst_all_1.gst-libav
|
|
gst_all_1.gst-plugins-bad
|
|
gst_all_1.gst-plugins-base
|
|
gst_all_1.gst-plugins-good
|
|
gst_all_1.gstreamer
|
|
gtk4
|
|
lcms
|
|
libadwaita
|
|
libseccomp
|
|
libwebp
|
|
];
|
|
|
|
mesonBuildType = "release";
|
|
|
|
doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform;
|
|
cargoCheckType = if (finalAttrs.mesonBuildType != "debug") then "release" else "debug";
|
|
|
|
nativeInstallCheckInputs = [ versionCheckHook ];
|
|
doInstallCheck = true;
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
|
|
cargoCheckHook
|
|
mesonCheckPhase
|
|
|
|
runHook postCheck
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "Program for comparing multiple versions of an image or video";
|
|
homepage = "https://gitlab.gnome.org/YaLTeR/identity";
|
|
changelog = "https://gitlab.gnome.org/YaLTeR/identity/-/releases/v${finalAttrs.version}";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = with lib.maintainers; [ getchoo ];
|
|
mainProgram = "identity";
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|