base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / fl / florist / package.nix
blobb04148b63da71fd3eb3ddafdd11b065549c6e5b2
2   stdenv,
3   gnat13,
4   gnat13Packages,
5   fetchFromGitHub,
6   lib,
7 }:
9 stdenv.mkDerivation rec {
10   name = "florist";
11   version = "24.2";
13   src = fetchFromGitHub {
14     owner = "adacore";
15     repo = "florist";
16     rev = "refs/heads/${version}";
17     hash = "sha256-EFGmcQfWpxEWfsAoQrHegTlizl6siE8obKx+fCpVwUQ=";
18   };
20   configureFlags = [ "--enable-shared" ];
22   nativeBuildInputs = [
23     gnat13
24     gnat13Packages.gprbuild
25   ];
27   meta = {
28     description = "Posix Ada Bindings";
29     homepage = "https://github.com/adacore/florist";
30     license = lib.licenses.mit;
31     maintainers = with lib.maintainers; [ lutzberger ];
32     platforms = lib.platforms.linux;
33   };