nixpkgs-suyu/pkgs/applications/search/doodle/default.nix

21 lines
613 B
Nix
Raw Normal View History

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 {
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 = {
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";
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;
};
}