nixpkgs/pkgs/applications/search/doodle/default.nix
Lluís Batlle i Rossell 078ddf4746 Adding doodle.
2013-04-22 20:57:14 +04:00

21 lines
589 B
Nix

{ stdenv, fetchurl, libextractor, gettext }:
stdenv.mkDerivation rec {
name = "doodle-0.7.0";
buildInputs = [ libextractor gettext ];
src = fetchurl {
url = "http://grothoff.org/christian/doodle/download/${name}.tar.gz";
sha256 = "0ayx5q7chzll9sv3miq35xl36r629cvgdzphf379kxzlzhjldy3j";
};
meta = {
homepage = http://grothoff.org/christian/doodle/;
description = "Tool to quickly index and search documents on a computer";
license = "GPLv2+";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}