flamerobin: 0.9.3.12 -> 0.9.14

This commit is contained in:
Rafael Ieda
2025-11-06 19:30:10 -03:00
parent 1d1bfea919
commit d1740d0616

View File

@@ -2,32 +2,23 @@
lib, lib,
stdenv, stdenv,
fetchFromGitHub, fetchFromGitHub,
fetchpatch,
cmake, cmake,
wxGTK32, wxGTK32,
boost, boost,
firebird, firebird,
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation (finalAttrs: {
version = "0.9.3.12"; version = "0.9.14";
pname = "flamerobin"; pname = "flamerobin";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "mariuz"; owner = "mariuz";
repo = "flamerobin"; repo = "flamerobin";
rev = version; tag = "${finalAttrs.version}";
sha256 = "sha256-uWx3riRc79VKh7qniWFjxxc7v6l6cW0i31HxoN1BSdA="; hash = "sha256-IwJEFF3vP0BC9PoMoY+XPLT+ygXnFXP/TWaqjdQWs8s=";
}; };
patches = [
# rely on compiler command line for __int128 and std::decimal::decimal128
(fetchpatch {
url = "https://github.com/mariuz/flamerobin/commit/8e0ea6d42aa28a4baeaa8c8b8b57c56eb9ae3540.patch";
sha256 = "sha256-l6LWXA/sRQGQKi798bzl0iIJ2vdvXHOjG7wdFSXv+NM=";
})
];
enableParallelBuilding = true; enableParallelBuilding = true;
nativeBuildInputs = [ cmake ]; nativeBuildInputs = [ cmake ];
@@ -38,12 +29,12 @@ stdenv.mkDerivation rec {
firebird firebird
]; ];
meta = with lib; { meta = {
description = "Database administration tool for Firebird RDBMS"; description = "Database administration tool for Firebird RDBMS";
homepage = "https://github.com/mariuz/flamerobin"; homepage = "https://github.com/mariuz/flamerobin";
license = licenses.bsdOriginal; license = lib.licenses.bsdOriginal;
maintainers = with maintainers; [ uralbash ]; maintainers = with lib.maintainers; [ uralbash ];
platforms = platforms.unix; platforms = lib.platforms.unix;
mainProgram = "flamerobin"; mainProgram = "flamerobin";
}; };
} })