remove unused pkgs

This commit is contained in:
♥ Minnie ♥ 2024-02-13 22:53:59 +08:00
parent f8fa6ef27d
commit 10e4eed61d
2 changed files with 0 additions and 38 deletions

View file

@ -4,5 +4,4 @@
{ pkgs ? (import ../nixpkgs.nix) { } }: { { pkgs ? (import ../nixpkgs.nix) { } }: {
xmobar = pkgs.callPackage ./xmobar-config { }; xmobar = pkgs.callPackage ./xmobar-config { };
xmonad = pkgs.callPackage ./xmonad-config { }; xmonad = pkgs.callPackage ./xmonad-config { };
jellyfin-rpc = pkgs.callPackage ./jellyfin-rpc { };
} }

View file

@ -1,37 +0,0 @@
{ lib, fetchFromGitHub, rustPlatform }:
with import <nixpkgs>
{
overlays = [
(import (fetchTarball "https://github.com/oxalica/rust-overlay/archive/master.tar.gz"))
];
};
let
rustPlatform = makeRustPlatform {
cargo = rust-bin.stable.latest.minimal;
rustc = rust-bin.stable.latest.minimal;
};
in
rustPlatform.buildRustPackage rec {
pname = "jellyfin-rpc";
version = "0.15.5";
src = fetchFromGitHub {
owner = "Radiicall";
repo = pname;
rev = version;
hash = "sha256-c4L/9ATxOGHv5bm3e2yforXR1ASvvopFc+J4XqQ5JKc=";
};
cargoHash = "sha256-RDP5fpLxKGYYbTUda2adL5y3CeuXV81uEo211KLKCfw=";
doCheck = false;
meta = with lib; {
description = "Displays the content you're currently watching on Discord!";
homepage = "https://github.com/Radiicall/jellyfin-rpc";
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ sajenim ];
};
}