biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / dtool / default.nix
blob0e62d91cdbc958ccc1a738f627ecb9ac2416d8d5
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 , stdenv
5 , darwin
6 }:
8 rustPlatform.buildRustPackage rec {
9   pname = "dtool";
10   version = "0.12.0";
12   src = fetchFromGitHub {
13     owner = "guoxbin";
14     repo = "dtool";
15     rev = "v${version}";
16     hash = "sha256-m4H+ANwEbK6vGW3oIVZqnqvMiAKxNJf2TLIGh/G6AU4=";
17   };
19   cargoHash = "sha256-o5Xvc0tnoUgfp5k7EqVuEH9Zyo3C+A+mVqPhMtZCYKw=";
21   buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
22     darwin.apple_sdk.frameworks.Security
23   ];
24   # FIXME: remove patch when upstream version of rustc-serialize is updated
25   cargoPatches = [ ./rustc-serialize-fix.patch ];
27   checkType = "debug";
29   meta = with lib; {
30     description = "Command-line tool collection to assist development written in RUST";
31     homepage = "https://github.com/guoxbin/dtool";
32     license = licenses.gpl3Only;
33     maintainers = with maintainers; [ linuxissuper ];
34     mainProgram = "dtool";
35   };