We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent 3640c65 commit 50b3f8eCopy full SHA for 50b3f8e
pkgs/tools/misc/fsql/default.nix
@@ -1,15 +1,16 @@
1
-{ stdenv, buildGoPackage, fetchgit }:
+{ stdenv, buildGoPackage, fetchFromGitHub }:
2
3
buildGoPackage rec {
4
name = "fsql-${version}";
5
- version = "0.1.1";
+ version = "0.2.1";
6
7
goPackagePath = "github.com/kshvmdn/fsql";
8
9
- src = fetchgit {
10
- rev = "refs/tags/v${version}";
11
- url = "https://github.com/kshvmdn/fsql";
12
- sha256 = "1zvblhfd15l86dcx0p12yrc2rrmfdpzyd107508pb72r2ar638vh";
+ src = fetchFromGitHub {
+ owner = "kshvmdn";
+ repo = "fsql";
+ rev = "v${version}";
13
+ sha256 = "1izcfxm77hjj8z7a2nk9bbwbz4wc2yqzs2ir8v3k822m1hvgwb9a";
14
};
15
16
meta = with stdenv.lib; {
0 commit comments