Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
TBS1996 committed Mar 26, 2024
1 parent 117b01c commit ce1bfc8
Show file tree
Hide file tree
Showing 6 changed files with 405 additions and 203 deletions.
188 changes: 176 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cringecast"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
description = "Simple podcast manager for your terminal"
license = "MIT"
Expand All @@ -13,4 +13,6 @@ rss = "2.0.7"
ureq = "2.9.6"
toml = "0.5"
serde = { version = "1.0", features = ["derive"] }
anyhow = "1.0.81"
dirs = "5.0.1"

25 changes: 25 additions & 0 deletions default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{ pkgs ? import <nixpkgs> {}, fetchFromGitHub ? pkgs.fetchFromGitHub }:

pkgs.rustPlatform.buildRustPackage rec {
pname = "cringecast";
version = "0.1.0";

src = fetchFromGitHub {
owner = "tbs1996";
repo = pname;
rev = "117b01c6f6d723d930290aef7d73f24edee19247";
sha256 = "0000000000000000000000000000000000000000000000000000";
};

cargoSha256 = "0000000000000000000000000000000000000000000000000000";

buildInputs = [ pkgs.openssl pkgs.pkg-config ];

meta = with pkgs.lib; {
description = "simple cli podcast manager";
homepage = "https://github.com/tbs1996/cringecast";
license = licenses.mit;
maintainers = with maintainers; [ maintainers.<your-nixpkgs-username> ];
};
}

1 change: 0 additions & 1 deletion shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ pkgs.mkShell {
pkgs.cargo
pkgs.rustup
pkgs.rust-analyzer
# other dependencies...
];
}

Expand Down
Loading

0 comments on commit ce1bfc8

Please sign in to comment.