lol
1{ lib, buildGoPackage, fetchFromGitHub }:
2
3buildGoPackage rec {
4 pname = "fsql";
5 version = "0.3.1";
6
7 goPackagePath = "github.com/kshvmdn/fsql";
8
9 src = fetchFromGitHub {
10 owner = "kshvmdn";
11 repo = "fsql";
12 rev = "v${version}";
13 sha256 = "1accpxryk4744ydfrqc3la5k376ji11yr84n66dz5cx0f3n71vmz";
14 };
15
16 meta = with lib; {
17 description = "Search through your filesystem with SQL-esque queries";
18 homepage = "https://github.com/kshvmdn/fsql";
19 license = licenses.mit;
20 maintainers = with maintainers; [ pSub ];
21 platforms = platforms.unix;
22 };
23
24}