biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / remodel / default.nix
blobc9374d3a8dec31e4d1c66a8c59d7028e66b2eb15
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , rustPlatform
5 , pkg-config
6 , openssl
7 , Security
8 }:
10 rustPlatform.buildRustPackage rec {
11   pname = "remodel";
12   version = "0.11.0";
14   src = fetchFromGitHub {
15     owner = "rojo-rbx";
16     repo = "remodel";
17     rev = "v${version}";
18     sha256 = "sha256-tZ6ptGeNBULJaoFomMFN294wY8YUu1SrJh4UfOL/MnI=";
19   };
21   cargoSha256 = "sha256-YCYs+MMTxnJEKhzjddBp7lnSYPrpf3G+ktr1ez/ZKkg=";
23   nativeBuildInputs = [
24     pkg-config
25   ];
27   buildInputs = [
28     openssl
29   ] ++ lib.optionals stdenv.isDarwin [
30     Security
31   ];
33   meta = with lib; {
34     description = "Roblox file manipulation tool";
35     mainProgram = "remodel";
36     longDescription = ''
37       Remodel is a command line tool for manipulating Roblox files and the instances contained within them.
38     '';
39     homepage = "https://github.com/rojo-rbx/remodel";
40     downloadPage = "https://github.com/rojo-rbx/remodel/releases/tag/v${version}";
41     changelog = "https://github.com/rojo-rbx/remodel/raw/v${version}/CHANGELOG.md";
42     license = licenses.mit;
43     maintainers = with maintainers; [ wackbyte ];
44   };