Created
February 9, 2019 04:35
-
-
Save washort/743c0a4aadee23ec1983666ab337d9c9 to your computer and use it in GitHub Desktop.
bitwarden-web.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ lib, stdenv, fetchurl }: | |
stdenv.mkDerivation rec { | |
name= "bitwarden-web-${version}"; | |
version = "2.8.0d"; | |
src = fetchurl { | |
url = "https://github.com/dani-garcia/bw_web_builds/releases/download/v${version}/bw_web_v${version}.tar.gz"; | |
sha256 = "042hdwyn1shf973f1d8zyvslrny87pq2n78xryrb1mqg2806s6fz"; | |
}; | |
buildCommand = '' | |
mkdir $out | |
cd $out | |
tar xf $src | |
''; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment