Skip to content

Commit f717118

Browse files
committedMay 27, 2017
fsql: init at 0.1.0
1 parent 959842a commit f717118

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed
 

‎pkgs/tools/misc/fsql/default.nix

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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+
}

‎pkgs/top-level/all-packages.nix

+2
Original file line numberDiff line numberDiff line change
@@ -969,6 +969,8 @@ with pkgs;
969969

970970
fsmon = callPackage ../tools/misc/fsmon { };
971971

972+
fsql = callPackage ../tools/misc/fsql { };
973+
972974
fop = callPackage ../tools/typesetting/fop { };
973975

974976
fondu = callPackage ../tools/misc/fondu { };

0 commit comments

Comments
 (0)
Please sign in to comment.