converseen: init at 0.12.1.0

This commit is contained in:
éclairevoyant 2023-12-05 10:47:48 -05:00
parent e5bc23348e
commit 05d1bac619
No known key found for this signature in database
GPG Key ID: E3813AEAA02DB54B
1 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,49 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
, imagemagick
, pkg-config
, qt5
, nix-update-script
}:
stdenv.mkDerivation (finalAttrs: {
pname = "converseen";
version = "0.12.1.0";
src = fetchFromGitHub {
owner = "Faster3ck";
repo = "Converseen";
rev = "refs/tags/v${finalAttrs.version}";
hash = "sha256-WGOmnaO9IAcsOg5W2kJ1dxOk1ndn6InCVVN4FTehKTk=";
};
strictDeps = true;
enableParallelBuilding = true;
nativeBuildInputs = [
cmake
pkg-config
qt5.wrapQtAppsHook
];
buildInputs = [
imagemagick
qt5.qtbase
qt5.qttools
];
passthru.updateScript = nix-update-script { };
meta = {
description = "Batch image converter and resizer";
homepage = "https://converseen.fasterland.net/";
changelog = "https://github.com/Faster3ck/Converseen/blob/${finalAttrs.src.rev}/CHANGELOG";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ eclairevoyant ];
mainProgram = "converseen";
platforms = lib.platforms.all;
};
})