Compare commits
No commits in common. "886f181e38eb0923697d024869390306a61b981e" and "95ad53b0d51345cc44e8259a04afe7bf50bdac4d" have entirely different histories.
886f181e38
...
95ad53b0d5
|
@ -1,4 +1,4 @@
|
|||
{ self, inputs, config, ... } @args: let
|
||||
{ self, config, ... } @args: let
|
||||
btop = import ./btop args;
|
||||
editor = import ./editorconfig args;
|
||||
foot = import ./foot args;
|
||||
|
@ -40,10 +40,6 @@ in {
|
|||
".gitconfig".source = git.file;
|
||||
".ideavimrc".text = jetbrains.ideavimrc;
|
||||
".nix".source = self;
|
||||
".nixpkgs".source = inputs.nixpkgs;
|
||||
# TODO: Add after migrating to stable.
|
||||
# ".nixpkgs_unstable".source = inputs.nixpkgs;
|
||||
# ".nixpkgs_master".source = inputs.nixpkgs;
|
||||
".parallel/will-cite".text = "";
|
||||
".ssh/config".text = ssh.text;
|
||||
".template".source = ./template;
|
||||
|
|
|
@ -55,7 +55,6 @@
|
|||
zip unzip # Zip archive/unarchive tools.
|
||||
|
||||
# (pkgs.callPackage ./ytdlp {})
|
||||
(pkgs.callPackage ./yamusicdownload {})
|
||||
];
|
||||
|
||||
desktop = with pkgs; [
|
||||
|
|
|
@ -1,22 +0,0 @@
|
|||
{ pkgs, ... }: with pkgs.python3Packages; buildPythonPackage {
|
||||
version = "1.0.0";
|
||||
pname = "yandex-music-downloader";
|
||||
format = "pyproject";
|
||||
|
||||
propagatedBuildInputs = [
|
||||
setuptools
|
||||
setuptools-git
|
||||
requests
|
||||
eyed3
|
||||
browser-cookie3
|
||||
];
|
||||
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "llistochek";
|
||||
repo = "yandex-music-downloader";
|
||||
rev = "08ea384869cbc31efb1e78b831e2356882219951";
|
||||
hash = "sha256-WOFesD7HjskyqHaXZAPy3pgSPaEO+tOyQ+5MV3ZO7XU=";
|
||||
};
|
||||
|
||||
meta.mainProgram = "yandex-music-downloader";
|
||||
}
|
Loading…
Reference in a new issue