refinery-cli: init at 0.8.5
This commit is contained in:
parent
11c2a81ef6
commit
81a0ad4165
25
pkgs/development/tools/refinery-cli/default.nix
Normal file
25
pkgs/development/tools/refinery-cli/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user