fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ lib
2, buildGoModule
3, fetchFromGitHub
4}:
5
6buildGoModule rec {
7 pname = "dblab";
8 version = "0.22.0";
9
10 src = fetchFromGitHub {
11 owner = "danvergara";
12 repo = "dblab";
13 rev = "v${version}";
14 hash = "sha256-eIkHaNFvXU9GGyYOH8lqzvwQQ6pz8zWeO4xY9jP25dU=";
15 };
16
17 vendorHash = "sha256-WzyH3Ja/Znk/9aavIoBQRpJVnGb5o/ded0g92MTa4M4=";
18
19 ldflags = [ "-s -w -X main.version=${version}" ];
20
21 # some tests require network access
22 doCheck = false;
23
24 meta = with lib; {
25 description = "The database client every command line junkie deserves";
26 homepage = "https://github.com/danvergara/dblab";
27 license = licenses.mit;
28 maintainers = with maintainers; [ dit7ya ];
29 };
30}