mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
Merge pull request #237614 from figsoda/spacer
This commit is contained in:
commit
f393c1468a
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 ];
|
||||
};
|
||||
}
|
@ -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; };
|
||||
|
Loading…
Reference in New Issue
Block a user