File tree 2 files changed +26
-0
lines changed
2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change
1
+ { stdenv , buildGoPackage , fetchgit } :
2
+
3
+ buildGoPackage rec {
4
+ name = "fsql-${ version } " ;
5
+ version = "0.1.0" ;
6
+
7
+ goPackagePath = "github.com/kshvmdn/fsql" ;
8
+
9
+ src = fetchgit {
10
+ rev = "v${ version } " ;
11
+ url = "https://github.com/kshvmdn/fsql" ;
12
+ sha256 = "1wkf9rr6x4b5bvxj9zwfw9hd870c831j7mc6fvd448id653wh122" ;
13
+ } ;
14
+
15
+ meta = with stdenv . lib ; {
16
+ description = "Search through your filesystem with SQL-esque queries" ;
17
+ homepage = https://github.com/kshvmdn/fsql ;
18
+ license = licenses . mit ;
19
+ maintainers = with maintainers ; [ pSub ] ;
20
+ platforms = platforms . linux ;
21
+ inherit version ;
22
+ } ;
23
+
24
+ }
Original file line number Diff line number Diff line change @@ -969,6 +969,8 @@ with pkgs;
969
969
970
970
fsmon = callPackage ../tools/misc/fsmon { };
971
971
972
+ fsql = callPackage ../tools/misc/fsql { };
973
+
972
974
fop = callPackage ../tools/typesetting/fop { };
973
975
974
976
fondu = callPackage ../tools/misc/fondu { };
You can’t perform that action at this time.
0 commit comments