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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
652 B
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{ lib, stdenv, fetchurl, libextractor, gettext }:
2013-04-22 16:14:29 +00:00
stdenv.mkDerivation rec {
pname = "doodle";
version = "0.7.2";
2013-04-22 16:14:29 +00:00
buildInputs = [ libextractor gettext ];
src = fetchurl {
url = "https://grothoff.org/christian/doodle/download/doodle-${version}.tar.gz";
2021-03-08 07:32:10 +00:00
sha256 = "sha256-dtRPfUjhBNgN+5zHMYmszISmBv1+K6yjKsbQBiAXWRA=";
2013-04-22 16:14:29 +00:00
};
meta = {
homepage = "https://grothoff.org/christian/doodle/";
2013-04-22 16:14:29 +00:00
description = "Tool to quickly index and search documents on a computer";
2021-01-15 13:21:58 +00:00
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ viric ];
2021-01-15 13:21:58 +00:00
platforms = with lib.platforms; linux;
2024-02-11 02:19:15 +00:00
mainProgram = "doodle";
2013-04-22 16:14:29 +00:00
};
}