Adding doodle.
This commit is contained in:
parent
51bf1ae795
commit
078ddf4746
20
pkgs/applications/search/doodle/default.nix
Normal file
20
pkgs/applications/search/doodle/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ 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;
|
||||
};
|
||||
}
|
@ -6798,6 +6798,8 @@ let
|
||||
inherit (xlibs) libX11;
|
||||
};
|
||||
|
||||
doodle = callPackage ../applications/search/doodle { };
|
||||
|
||||
dunst = callPackage ../applications/misc/dunst { };
|
||||
|
||||
dvb_apps = callPackage ../applications/video/dvb-apps { };
|
||||
|
Loading…
Reference in New Issue
Block a user