mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
mcfly: init at v0.3.1
This commit is contained in:
parent
f3a676a88c
commit
a75e25b919
30
pkgs/tools/misc/mcfly/default.nix
Normal file
30
pkgs/tools/misc/mcfly/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ stdenv, rustPlatform, fetchFromGitHub }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
name = "mcfly-${version}";
|
||||
version = "v0.3.1";
|
||||
rev = "${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
inherit rev;
|
||||
owner = "cantino";
|
||||
repo = "mcfly";
|
||||
sha256 = "0pmyw21zns4zn7pffji4yvbj63fx3g15cx81pk4bs6lzyz5zbdc2";
|
||||
};
|
||||
|
||||
preInstall = ''
|
||||
mkdir -p $out/share/mcfly
|
||||
cp mcfly.bash $out/share/mcfly/
|
||||
chmod +x $out/share/mcfly/mcfly.bash
|
||||
'';
|
||||
|
||||
cargoSha256 = "0asldrf6s23f9aylk9f8zimmaskgqv3vkdhfnrd26zl9axm0a0ap";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/cantino/mcfly;
|
||||
description = "An upgraded ctrl-r for Bash whose history results make sense for what you're working on right now.";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.melkor333 ];
|
||||
};
|
||||
}
|
|
@ -3793,6 +3793,8 @@ in
|
|||
|
||||
mautrix-whatsapp = callPackage ../servers/mautrix-whatsapp { };
|
||||
|
||||
mcfly = callPackage ../tools/misc/mcfly { };
|
||||
|
||||
mdbook = callPackage ../tools/text/mdbook {
|
||||
inherit (darwin.apple_sdk.frameworks) CoreServices;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue