refinery-cli: init at 0.8.5

This commit is contained in:
Luc Perkins 2022-07-31 19:36:52 +02:00
parent 11c2a81ef6
commit 81a0ad4165
No known key found for this signature in database
GPG Key ID: 4F102D0C16E232F2
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ fetchCrate, lib, openssl, pkg-config, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "refinery-cli";
version = "0.8.5";
src = fetchCrate {
pname = "refinery_cli";
inherit version;
sha256 = "sha256-I9YjMsl70eiws4ea0P9oqOsNzN+gfO5Jwr7VlFCltq8=";
};
cargoSha256 = "sha256-Ehofdr6UNtOwRT0QVFaXDrWFRPqdF9eA8eL/hRwIJUM=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
meta = with lib; {
description = "Run migrations for the Refinery ORM for Rust via the CLI";
homepage = "https://github.com/rust-db/refinery";
license = licenses.mit;
maintainers = with maintainers; [ lucperkins ];
};
}

View File

@ -3518,6 +3518,8 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) Security;
};
refinery-cli = callPackage ../development/tools/refinery-cli { };
digitemp = callPackage ../tools/misc/digitemp { };
dijo = callPackage ../tools/misc/dijo {