more moving around

This commit is contained in:
Noah Masur
2025-02-16 16:17:39 -05:00
parent dc6b6f8328
commit 1062369a78
12 changed files with 81 additions and 53 deletions

View File

@ -1,10 +1,15 @@
{ pkgs, ... }:
pkgs.
pkgs.writeShellApplication
{
name = "ocr";
runtimeInputs = [ pkgs.tesseract ];
text = builtins.readFile ./ocr.sh;
}
pkgs.stdenv.mkDerivation {
pname = "wallpapers";
version = "0.1";
src = pkgs.fetchFromGitLab {
owner = "exorcist365";
repo = "wallpapers";
rev = "8d2860ac6c05cec0f78d5c9d07510f4ff5da90dc";
sha256 = "155lb7w563dk9kdn4752hl0zjhgnq3j4cvs9z98nb25k1xpmpki7";
};
installPhase = ''
cp -r $src/ $out/
'';
}