biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / search / doodle / default.nix
blobced330bd647ed7f3759de6be131bca6539eec2b1
1 { lib, stdenv, fetchurl, libextractor, gettext }:
3 stdenv.mkDerivation rec {
4   pname = "doodle";
5   version = "0.7.3";
7   buildInputs = [ libextractor gettext ];
9   src = fetchurl {
10     url = "https://grothoff.org/christian/doodle/download/doodle-${version}.tar.gz";
11     sha256 = "sha256-qodp2epYyolg38MNhBV+/NMLmfXjhsn2X9uKTUniv2s=";
12   };
14   meta = {
15     homepage = "https://grothoff.org/christian/doodle/";
16     description = "Tool to quickly index and search documents on a computer";
17     license = lib.licenses.gpl2Plus;
18     maintainers = [ ];
19     platforms = with lib.platforms; linux;
20     mainProgram = "doodle";
21   };