evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / se / sea-orm-cli / package.nix
blob6e9df125e3bb27a7528790d0ee888684358b5113
1 { lib
2 , stdenv
3 , rustPlatform
4 , fetchCrate
5 , pkg-config
6 , openssl
7 , darwin
8 }:
9 rustPlatform.buildRustPackage rec {
10   pname = "sea-orm-cli";
11   version = "1.0.1";
13   src = fetchCrate {
14     inherit pname version;
15     hash = "sha256-b1Nlt3vsLDajTiIW9Vn51Tv9gXja8/ZZBD62iZjh3KY=";
16   };
18   nativeBuildInputs = [ pkg-config ];
20   buildInputs = [ openssl ]
21     ++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.apple_sdk.frameworks.SystemConfiguration ];
23   cargoHash = "sha256-ZGM+Y67ycBiukgEBUq+WiA1OUCGahya591gM6CGwzMQ=";
25   meta = with lib; {
26     homepage = "https://www.sea-ql.org/SeaORM";
27     description = " Command line utility for SeaORM";
28     license = with licenses; [ mit /* or */ asl20 ];
29     maintainers = with maintainers; [ traxys ];
30   };