mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
21 lines
609 B
Nix
21 lines
609 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 = stdenv.lib.licenses.gpl2Plus;
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
};
|
|
}
|