chore: remove rustypaste-cli since its been upstreamed

This commit is contained in:
notohh 2023-06-10 05:03:31 -04:00
parent 386e276c7c
commit 49afe97926
Signed by: notohh
GPG key ID: BD47506D475EE86D
2 changed files with 2 additions and 26 deletions

View file

@ -21,6 +21,7 @@
username = "notoh";
homeDirectory = "/home/notoh";
packages = with pkgs; [
webcord
discord
spotify-player
obs-studio
@ -30,6 +31,7 @@
virt-manager
imv
mpv
rustypaste-cli
playerctl
logseq
cryptomator
@ -44,7 +46,6 @@
runelite
prismlauncher
(callPackage ../../pkgs/chatterino7 {})
(callPackage ../../pkgs/rustypaste-cli {})
];
stateVersion = "23.05";

View file

@ -1,25 +0,0 @@
{
lib,
rustPlatform,
fetchFromGitHub,
...
}:
rustPlatform.buildRustPackage rec {
pname = "rustypaste-cli";
version = "0.4.0";
src = fetchFromGitHub {
owner = "orhun";
repo = pname;
rev = "v${version}";
sha256 = "sha256-Jl7fytDIW6MLY6VX7rDuX9PcZaIqENQbUTMUJKCa8Mg=";
};
cargoHash = "sha256-hICwrgzNpyYmNW1gEKgTsSjWyqCaOHc4X37O0R2oSzY=";
meta = with lib; {
description = "A CLI tool for rustypaste ";
homepage = "https://github.com/orhun/rustypaste-cli";
license = licenses.mit;
maintainers = with maintainers; [notohh];
};
}