mirror of
https://github.com/thegeneralist01/archivr
synced 2026-07-21 18:55:36 +02:00
chore: update gitignore and flake.nix
This commit is contained in:
parent
17d116655a
commit
b3f1932b62
2 changed files with 12 additions and 3 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
|
@ -2,8 +2,9 @@
|
||||||
|
|
||||||
!.gitignore
|
!.gitignore
|
||||||
|
|
||||||
!docs
|
!docs/
|
||||||
!docs/**
|
!docs/LICENSE
|
||||||
|
!docs/README*
|
||||||
|
|
||||||
!crates
|
!crates
|
||||||
!crates/**
|
!crates/**
|
||||||
|
|
|
||||||
10
flake.nix
10
flake.nix
|
|
@ -143,9 +143,17 @@
|
||||||
--set ARCHIVR_TWEET_SCRAPER $out/libexec/archivr-server/scrape_user_tweet_contents.py
|
--set ARCHIVR_TWEET_SCRAPER $out/libexec/archivr-server/scrape_user_tweet_contents.py
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
archivr-all = pkgs.symlinkJoin {
|
||||||
|
name = "archivr-all";
|
||||||
|
paths = [
|
||||||
|
archivr
|
||||||
|
archivr_server
|
||||||
|
];
|
||||||
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
default = archivr;
|
default = archivr-all;
|
||||||
|
archivr-all = archivr-all;
|
||||||
archivr = archivr;
|
archivr = archivr;
|
||||||
archivr-cli = archivr;
|
archivr-cli = archivr;
|
||||||
archivr-cli-unwrapped = archivr_cli_unwrapped;
|
archivr-cli-unwrapped = archivr_cli_unwrapped;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue