Merge pull request #237614 from figsoda/spacer

This commit is contained in:
figsoda 2023-06-14 11:06:07 -04:00 committed by GitHub
commit f393c1468a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "spacer";
version = "0.1.1";
src = fetchFromGitHub {
owner = "samwho";
repo = "spacer";
rev = "v${version}";
hash = "sha256-3BPpyRbhrC/m2GnV0HH6DsZB3PqSL8AY6hzknFekpKE=";
};
cargoHash = "sha256-U9xKqPku4SxnAs9azQSDD3asHXGqp4HrdSzRZsExnT0=";
meta = with lib; {
description = "CLI tool to insert spacers when command output stops";
homepage = "https://github.com/samwho/spacer";
changelog = "https://github.com/samwho/spacer/releases/tag/${src.rev}";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}

View File

@ -12625,6 +12625,8 @@ with pkgs;
sozu = callPackage ../servers/sozu { };
spacer = callPackage ../tools/misc/spacer { };
sparrow-unwrapped = callPackage ../applications/blockchains/sparrow {
openimajgrabber = callPackage ../applications/blockchains/sparrow/openimajgrabber.nix {};
openjdk = openjdk.override { enableJavaFX = true; };