We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efd8ea7 commit abdfec2Copy full SHA for abdfec2
pkgs/liana/default.nix
@@ -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