biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / search / doodle / default.nix
blobfbe5ee56b31938f32d3a0f5b1e2357c6982598c1
1 { lib, stdenv, fetchurl, libextractor, gettext }:
3 stdenv.mkDerivation rec {
4   pname = "doodle";
5   version = "0.7.2";
7   buildInputs = [ libextractor gettext ];
9   src = fetchurl {
10     url = "https://grothoff.org/christian/doodle/download/doodle-${version}.tar.gz";
11     sha256 = "sha256-dtRPfUjhBNgN+5zHMYmszISmBv1+K6yjKsbQBiAXWRA=";
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 = with lib.maintainers; [ viric ];
19     platforms = with lib.platforms; linux;
20     mainProgram = "doodle";
21   };