Merge pull request #226460 from linuxissuper/add-package-dtool

This commit is contained in:
Janik
2023-09-12 22:08:40 +02:00
committed by GitHub
2 changed files with 35 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
{ lib
, rustPlatform
, fetchFromGitHub
, stdenv
, darwin
}:
rustPlatform.buildRustPackage rec {
pname = "dtool";
version = "0.12.0";
src = fetchFromGitHub {
owner = "guoxbin";
repo = "dtool";
rev = "v${version}";
hash = "sha256-m4H+ANwEbK6vGW3oIVZqnqvMiAKxNJf2TLIGh/G6AU4=";
};
cargoHash = "sha256-r8r3f4yKMQgjtB3j4qE7cqQL18nIqAGPO5RsFErqh2c=";
buildInputs = lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.Security
];
checkType = "debug";
meta = with lib; {
description = "A command-line tool collection to assist development written in RUST";
homepage = "https://github.com/guoxbin/dtool";
license = licenses.gpl3Only;
maintainers = with maintainers; [ linuxissuper ];
};
}

View File

@@ -42267,6 +42267,8 @@ with pkgs;
isolate = callPackage ../tools/security/isolate { };
dtool = callPackage ../tools/misc/dtool { };
tremotesf = libsForQt5.callPackage ../applications/networking/p2p/tremotesf { };
reindeer = callPackage ../development/tools/reindeer { };