summaryrefslogtreecommitdiffstats
path: root/indeedwatcher.scm
diff options
context:
space:
mode:
authormsglm <msglm@techchud.xyz>2023-08-22 23:03:00 -0500
committermsglm <msglm@techchud.xyz>2023-08-22 23:03:00 -0500
commite84f770e1bb460377f01af960517eac61db06faa (patch)
treefde94d1811531eded42653c4f7d478fc09cde62f /indeedwatcher.scm
parentd276dad78080f99cb59e0cb263abcd5cdbbbd715 (diff)
downloadguix-msglm-e84f770e1bb460377f01af960517eac61db06faa.tar.gz
guix-msglm-e84f770e1bb460377f01af960517eac61db06faa.tar.bz2
guix-msglm-e84f770e1bb460377f01af960517eac61db06faa.zip
indeedwatcher removed
Diffstat (limited to 'indeedwatcher.scm')
-rw-r--r--indeedwatcher.scm49
1 files changed, 0 insertions, 49 deletions
diff --git a/indeedwatcher.scm b/indeedwatcher.scm
deleted file mode 100644
index 83ad8df..0000000
--- a/indeedwatcher.scm
+++ /dev/null
@@ -1,49 +0,0 @@
-(define-module (indeedwatcher)
- #:use-module (guix licenses)
- #:use-module (guix packages)
- #:use-module (guix build-system gnu)
- #:use-module (guix download)
- #:use-module (guix git-download)
- #:use-module (gnu packages nim)
- )
-
-
-
-
-(define-public indeedwatcher
- (package
- (name "indeedwatcher")
- (version "1.1.3")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://git.techchud.xyz/indeedwatcher")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "1qsq364zqyqwxj8qji3r3wr3ch4704jnhsjyj83q7nprgjdvgd9a"))))
- (build-system gnu-build-system)
- (inputs (list nim))
- (arguments
- `(#:tests? #f
- #:phases
- (modify-phases %standard-phases
- (delete 'configure)
- (replace 'build
- (lambda _
- (mkdir-p "bin")
- (invoke "nimble" "build" "--nimbleDir:./bin/" "-y")
- #t))
- (replace 'install
- (lambda* (#:key outputs #:allow-other-keys)
- (let* ((out (assoc-ref outputs "out"))
- (bin (string-append out "/bin"))
- (man1 (string-append out "/share/man/man1")))
- (install-file "./bin/indeedwatcher" bin)))))))
- (synopsis "Scrapes indeed for job listings")
- (description
- "This is a nim program for getting jobs from
- indeed delivered to you in an easy to parse format.")
- (home-page "https://git.techchud.xyz/indeedwatcher/")
- (license agpl3)))