parent
b753a7498b
commit
1c45651756
2 changed files with 28 additions and 0 deletions
26
pkgs/tools/misc/spacer/default.nix
Normal file
26
pkgs/tools/misc/spacer/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -12619,6 +12619,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; };
|
||||
|
|
Loading…
Reference in a new issue