Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 31 lines 645 B view raw
1{ 2 lib, 3 stdenv, 4 fetchurl, 5 libextractor, 6 gettext, 7}: 8 9stdenv.mkDerivation rec { 10 pname = "doodle"; 11 version = "0.7.3"; 12 13 buildInputs = [ 14 libextractor 15 gettext 16 ]; 17 18 src = fetchurl { 19 url = "https://grothoff.org/christian/doodle/download/doodle-${version}.tar.gz"; 20 sha256 = "sha256-qodp2epYyolg38MNhBV+/NMLmfXjhsn2X9uKTUniv2s="; 21 }; 22 23 meta = { 24 homepage = "https://grothoff.org/christian/doodle/"; 25 description = "Tool to quickly index and search documents on a computer"; 26 license = lib.licenses.gpl2Plus; 27 maintainers = [ ]; 28 platforms = with lib.platforms; linux; 29 mainProgram = "doodle"; 30 }; 31}