2017-05-27 10:49:48 +01:00
|
|
|
{ stdenv, buildGoPackage, fetchgit }:
|
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
name = "fsql-${version}";
|
2017-05-29 08:52:33 +01:00
|
|
|
version = "0.1.1";
|
2017-05-27 10:49:48 +01:00
|
|
|
|
|
|
|
goPackagePath = "github.com/kshvmdn/fsql";
|
|
|
|
|
|
|
|
src = fetchgit {
|
2017-05-29 08:52:33 +01:00
|
|
|
rev = "refs/tags/v${version}";
|
2017-05-27 10:49:48 +01:00
|
|
|
url = "https://github.com/kshvmdn/fsql";
|
2017-05-29 08:52:33 +01:00
|
|
|
sha256 = "1zvblhfd15l86dcx0p12yrc2rrmfdpzyd107508pb72r2ar638vh";
|
2017-05-27 10:49:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|