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

21 lines
611 B
Nix
Raw Normal View History

2013-04-22 16:14:29 +00:00
{ stdenv, fetchurl, libextractor, gettext }:
stdenv.mkDerivation rec {
name = "doodle-0.7.0";
buildInputs = [ libextractor gettext ];
src = fetchurl {
url = "https://grothoff.org/christian/doodle/download/${name}.tar.gz";
2013-04-22 16:14:29 +00:00
sha256 = "0ayx5q7chzll9sv3miq35xl36r629cvgdzphf379kxzlzhjldy3j";
};
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";
license = stdenv.lib.licenses.gpl2Plus;
2013-04-22 16:14:29 +00:00
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}