fsql: init at 0.1.0
This commit is contained in:
parent
959842a9c7
commit
f717118610
2 changed files with 26 additions and 0 deletions
24
pkgs/tools/misc/fsql/default.nix
Normal file
24
pkgs/tools/misc/fsql/default.nix
Normal file
|
@ -0,0 +1,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;
|
||||
};
|
||||
|
||||
}
|
|
@ -969,6 +969,8 @@ with pkgs;
|
|||
|
||||
fsmon = callPackage ../tools/misc/fsmon { };
|
||||
|
||||
fsql = callPackage ../tools/misc/fsql { };
|
||||
|
||||
fop = callPackage ../tools/typesetting/fop { };
|
||||
|
||||
fondu = callPackage ../tools/misc/fondu { };
|
||||
|
|
Loading…
Reference in a new issue