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