mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
topfew-rs: init at 0.2.3
This commit is contained in:
parent
7f6a225a6a
commit
1f203bab27
26
pkgs/tools/text/topfew-rs/default.nix
Normal file
26
pkgs/tools/text/topfew-rs/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "topfew-rs";
|
||||
version = "0.2.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "djc";
|
||||
repo = "topfew-rs";
|
||||
rev = version;
|
||||
hash = "sha256-VlSLPcKw3LYGnmKk5YOkcGIizw1tqtKF2BykY+1MtvY=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-j+afSwDHau7H20siYtid7l8tq+iS24KJBsNZAEdNJlI=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Rust implementation of Tim Bray's topfew tool";
|
||||
homepage = "https://github.com/djc/topfew-rs";
|
||||
license = licenses.gpl3Only;
|
||||
maintainers = with maintainers; [ figsoda ];
|
||||
mainProgram = "tf";
|
||||
};
|
||||
}
|
@ -12894,6 +12894,8 @@ with pkgs;
|
||||
|
||||
toml2nix = callPackage ../development/tools/toml2nix { };
|
||||
|
||||
topfew-rs = callPackage ../tools/text/topfew-rs { };
|
||||
|
||||
topgrade = callPackage ../tools/misc/topgrade {
|
||||
inherit (darwin.apple_sdk.frameworks) AppKit Cocoa Foundation;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user