biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / gir / default.nix
blobafdfbda2c54e9d451a84e2cc0e10b7fbfab41a33
1 { lib, fetchFromGitHub, rustPlatform }:
3 let
4   version = "0.17.1";
5 in
6 rustPlatform.buildRustPackage {
7   pname = "gir";
8   inherit version;
10   src = fetchFromGitHub {
11     owner = "gtk-rs";
12     repo = "gir";
13     rev = version;
14     sha256 = "sha256-WpTyT62bykq/uwzBFQXeJ1HxR1a2vKmtid8YAzk7J+Q=";
15   };
17   cargoLock = {
18     lockFile = ./Cargo.lock;
19     outputHashes = {
20       "rustdoc-stripper-0.1.18" = "sha256-b+RRXJDGULEvkIZDBzU/ZchVF63pX0S9hBupeP12CkU=";
21     };
22   };
24   postPatch = ''
25     rm build.rs
26     sed -i '/build = "build\.rs"/d' Cargo.toml
27     echo "pub const VERSION: &str = \"$version\";" > src/gir_version.rs
28   '';
30   meta = with lib; {
31     description = "Tool to generate rust bindings and user API for glib-based libraries";
32     homepage = "https://github.com/gtk-rs/gir/";
33     license = with licenses; [ mit ];
34     maintainers = with maintainers; [ ekleog ];
35     mainProgram = "gir";
36   };