2013-04-22 09:14:29 -07:00
|
|
|
{ stdenv, fetchurl, libextractor, gettext }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-01-15 03:02:17 -08:00
|
|
|
name = "doodle-0.7.1";
|
2013-04-22 09:14:29 -07:00
|
|
|
|
|
|
|
buildInputs = [ libextractor gettext ];
|
|
|
|
|
|
|
|
src = fetchurl {
|
2018-01-05 11:42:46 -08:00
|
|
|
url = "https://grothoff.org/christian/doodle/download/${name}.tar.gz";
|
2020-01-15 03:02:17 -08:00
|
|
|
sha256 = "086va4q8swiablv5x72yikrdh5swhy7kzmg5wlszi5a7vjya29xw";
|
2013-04-22 09:14:29 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://grothoff.org/christian/doodle/";
|
2013-04-22 09:14:29 -07:00
|
|
|
description = "Tool to quickly index and search documents on a computer";
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2013-04-22 09:14:29 -07:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|