mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
bf995e3641
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*".*\.";' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*)\.";/\1";/'
48 lines
1.1 KiB
Nix
48 lines
1.1 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, crystal
|
|
, gobject-introspection
|
|
, gitUpdater
|
|
}:
|
|
crystal.buildCrystalPackage rec {
|
|
pname = "gi-crystal";
|
|
version = "0.22.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hugopl";
|
|
repo = "gi-crystal";
|
|
rev = "v${version}";
|
|
hash = "sha256-JfBbKqobikpTGMryeO86zZ46EbOHybem+Cc5FZEL6i4=";
|
|
};
|
|
|
|
# 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
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = gitUpdater { rev-prefix = "v"; };
|
|
};
|
|
|
|
|
|
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 ];
|
|
};
|
|
}
|