Skip to content

Commit abdfec2

Browse files
committed
bootstrap liana pkg
1 parent efd8ea7 commit abdfec2

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

pkgs/liana/default.nix

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{ stdenv, lib, fetchFromGitHub, rustPlatform }:
2+
3+
rustPlatform.buildRustPackage rec {
4+
pname = "liana";
5+
version = "5.0";
6+
7+
src = fetchFromGitHub {
8+
owner = "wizardsardine";
9+
repo = pname;
10+
rev = version;
11+
hash = "sha256-RkZ2HSN7IjwN3tD0UhpMeQeqkb+Y79kSWnjJZ5KPbQk=";
12+
};
13+
14+
cargoHash = "sha256-v3tMz93mNsTy0k27IzgYk9bL2VfqtXImMlnvwgswp6U=";
15+
16+
meta = {
17+
description = "The missing safety net for your coins";
18+
homepage = "https://wizardsardine.com/liana/";
19+
license = lib.licenses.bsd3;
20+
};
21+
}

0 commit comments

Comments
 (0)