biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / gi-crystal / default.nix
blob8b664ee1e00f3618761da253f20131b225fe4b82
1 { lib
2 , fetchFromGitHub
3 , crystal
4 , gobject-introspection
5 }:
6 crystal.buildCrystalPackage rec {
7   pname = "gi-crystal";
8   version = "0.21.0";
10   src = fetchFromGitHub {
11     owner = "hugopl";
12     repo = "gi-crystal";
13     rev = "v${version}";
14     hash = "sha256-hL+4MvJn1z9UKCtyvU4zzIxOwRyYQ3Qt4qRb5F0J+sg=";
15   };
17   # Make sure gi-crystal picks up the name of the so or dylib and not the leading nix store path
18   # when the package name happens to start with “lib”.
19   patches = [ ./src.patch ./store-friendly-library-name.patch ];
21   nativeBuildInputs = [ gobject-introspection ];
22   buildTargets = [ "generator" ];
24   doCheck = false;
25   doInstallCheck = false;
27   installPhase = ''
28     runHook preInstall
30     mkdir $out
31     cp -r * $out
33     runHook postInstall
34   '';
36   meta = with lib; {
37     description = "GI Crystal is a binding generator used to generate Crystal bindings for GObject based libraries using GObject Introspection.";
38     homepage = "https://github.com/hugopl/gi-crystal";
39     mainProgram = "gi-crystal";
40     maintainers = with maintainers; [ sund3RRR ];
41   };