[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Help with packaging Bitwarden Desktop Client
From: |
Raghav Gururajan |
Subject: |
Help with packaging Bitwarden Desktop Client |
Date: |
Mon, 11 Nov 2019 07:52:26 -0500 |
Hello Guix!
I established the following package definition as a file "bitwarden-
desktop.scm".
(use-modules
(guix utils)
(guix packages)
(guix git-download)
(guix build-system node)
(guix licenses)
(gnu packages node))
(package
(name "bitwarden-desktop")
(version "1.16.6")
(source
(origin
(method git-fetch)
(uri
(git-reference
(url "
https://github.com/bitwarden/desktop/")
(commit (string-append "v"
version))))
(sha256
(base32
"1g3zp1wd1fjppckzrkr2lx40d9y4wj5f3ppr4jynbz577nk1rzz4"))))
(build-system node-build-system)
(inputs
`(
("node", node)))
(synopsis "Desktop Client for Bitwarden Password Manager")
(description "Bitwarden Password Manager is the easiest and
safest way for individuals, teams, and business organizations to store,
share, and sync sensitive data.")
(home-page "https://bitwarden.com")
(license gpl3+))
When I did, `guix package --install-from-file=bitwarden-desktop.scm, I
got the following error.
starting phase `build'
command "gulp" failed with status 127
Can anyone please help me with proceeding further?
Thank you!
Regards,
RG.
signature.asc
Description: This is a digitally signed message part
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- Help with packaging Bitwarden Desktop Client,
Raghav Gururajan <=