summary refs log tree commit diff
path: root/pkgs/tools/misc/fsql/default.nix
blob: 117574c3daa16bed2f11fae6480034d090b4f956 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, buildGoPackage, fetchgit }:

buildGoPackage rec {
  name = "fsql-${version}";
  version = "0.1.0";

  goPackagePath = "github.com/kshvmdn/fsql";

  src = fetchgit {
    rev = "v${version}";
    url = "https://github.com/kshvmdn/fsql";
    sha256 = "1wkf9rr6x4b5bvxj9zwfw9hd870c831j7mc6fvd448id653wh122";
  };

  meta = with stdenv.lib; {
    description = "Search through your filesystem with SQL-esque queries";
    homepage = https://github.com/kshvmdn/fsql;
    license = licenses.mit;
    maintainers = with maintainers; [ pSub ];
    platforms = platforms.linux;
    inherit version;
  };

}