remove unused pkgs
This commit is contained in:
parent
f8fa6ef27d
commit
10e4eed61d
|
@ -4,5 +4,4 @@
|
|||
{ pkgs ? (import ../nixpkgs.nix) { } }: {
|
||||
xmobar = pkgs.callPackage ./xmobar-config { };
|
||||
xmonad = pkgs.callPackage ./xmonad-config { };
|
||||
jellyfin-rpc = pkgs.callPackage ./jellyfin-rpc { };
|
||||
}
|
||||
|
|
|
@ -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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue