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

21 lines
596 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 {
2021-03-08 07:32:10 +00:00
name = "doodle-0.7.2";
2013-04-22 16:14:29 +00:00
buildInputs = [ libextractor gettext ];
src = fetchurl {
url = "https://grothoff.org/christian/doodle/download/${name}.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];
platforms = with lib.platforms; linux;
2013-04-22 16:14:29 +00:00
};
}