mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 18:53:17 +00:00
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, crystal
|
|
, gobject-introspection
|
|
}:
|
|
crystal.buildCrystalPackage rec {
|
|
pname = "gi-crystal";
|
|
version = "0.17.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hugopl";
|
|
repo = "gi-crystal";
|
|
rev = "v${version}";
|
|
hash = "sha256-DIH8L8P8lkWzzVUj1Tbf9oTUvu9X7OT66APyUHiDkYk=";
|
|
};
|
|
|
|
# Make sure gi-crystal picks up the name of the so or dylib and not the leading nix store path
|
|
# when the package name happens to start with “lib”.
|
|
patches = [ ./src.patch ./store-friendly-library-name.patch ];
|
|
|
|
nativeBuildInputs = [ gobject-introspection ];
|
|
buildTargets = [ "generator" ];
|
|
|
|
doCheck = false;
|
|
doInstallCheck = false;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir $out
|
|
cp -r * $out
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "GI Crystal is a binding generator used to generate Crystal bindings for GObject based libraries using GObject Introspection.";
|
|
homepage = "https://github.com/hugopl/gi-crystal";
|
|
mainProgram = "gi-crystal";
|
|
maintainers = with maintainers; [ sund3RRR ];
|
|
};
|
|
}
|