2021-01-15 05:21:58 -08:00
|
|
|
{ lib, stdenv, fetchurl, libextractor, gettext }:
|
2013-04-22 09:14:29 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-03-07 23:32:10 -08:00
|
|
|
name = "doodle-0.7.2";
|
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";
|
2021-03-07 23:32:10 -08:00
|
|
|
sha256 = "sha256-dtRPfUjhBNgN+5zHMYmszISmBv1+K6yjKsbQBiAXWRA=";
|
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";
|
2021-01-15 05:21:58 -08:00
|
|
|
license = lib.licenses.gpl2Plus;
|
|
|
|
maintainers = with lib.maintainers; [viric];
|
|
|
|
platforms = with lib.platforms; linux;
|
2013-04-22 09:14:29 -07:00
|
|
|
};
|
|
|
|
}
|