fsql: init at 0.1.0

This commit is contained in:
Pascal Wittmann 2017-05-27 11:49:48 +02:00
parent 959842a9c7
commit f717118610
No known key found for this signature in database
GPG key ID: C899ACE7E2322852
2 changed files with 26 additions and 0 deletions

View 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;
};
}

View file

@ -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 { };