nixpkgs/pkgs/applications/misc/flamerobin/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
1.0 KiB
Nix
Raw Normal View History

2022-10-30 02:58:29 +03:00
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, cmake
, wxGTK32
, boost
, firebird
}:
2016-05-05 22:52:47 +03:00
stdenv.mkDerivation rec {
2022-10-30 02:58:29 +03:00
version = "0.9.3.12";
pname = "flamerobin";
2016-05-05 22:52:47 +03:00
src = fetchFromGitHub {
owner = "mariuz";
repo = "flamerobin";
rev = version;
2022-10-30 02:58:29 +03:00
sha256 = "sha256-uWx3riRc79VKh7qniWFjxxc7v6l6cW0i31HxoN1BSdA=";
2016-05-05 22:52:47 +03:00
};
2022-10-30 02:58:29 +03:00
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=";
})
];
2016-05-05 22:52:47 +03:00
2022-10-30 02:58:29 +03:00
enableParallelBuilding = true;
2016-05-05 22:52:47 +03:00
2022-10-30 02:58:29 +03:00
nativeBuildInputs = [ cmake ];
2016-05-05 22:52:47 +03:00
2022-10-30 02:58:29 +03:00
buildInputs = [
wxGTK32
boost
firebird
2016-05-05 22:52:47 +03:00
];
meta = with lib; {
2016-05-05 22:52:47 +03:00
description = "Database administration tool for Firebird RDBMS";
homepage = "https://github.com/mariuz/flamerobin";
2016-05-05 22:52:47 +03:00
license = licenses.bsdOriginal;
maintainers = with maintainers; [ uralbash ];
platforms = platforms.unix;
};
}