refactor: made pkgs dendrites

This commit is contained in:
Leyla Becker 2026-04-07 08:45:11 -05:00
parent 88041e86bd
commit df8dd110ad
54 changed files with 1184 additions and 1058 deletions

View file

@ -0,0 +1,46 @@
{...}: let
package = {
lib,
rustPlatform,
fetchFromGitHub,
pkg-config,
openssl,
...
}:
rustPlatform.buildRustPackage rec {
pname = "e621-downloader";
version = "1.7.2";
src = fetchFromGitHub {
owner = "McSib";
repo = "e621_downloader";
rev = version;
hash = "sha256-4z+PrCv8Mlp0VOJ5Akv1TXrJir1Ws/+45a6VCZGuCtk=";
};
cargoHash = "sha256-/yqNYjP7BuFQWilL2Ty+E5rd8qXj30twteptHx7cLRo=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
openssl
];
meta = with lib; {
description = "E621 and E926 downloader made in Rust";
homepage = "https://github.com/McSib/e621_downloader";
license = licenses.asl20;
mainProgram = "e621_downloader";
};
};
in {
flake.commonModules.e621-downloader = {pkgs, ...}: {
nixpkgs.overlays = [
(final: prev: {
e621-downloader = pkgs.callPackage package {};
})
];
};
}