1 { lib, stdenv, fetchFromGitHub
5 stdenv.mkDerivation rec {
6 pname = "chrome-export";
9 src = fetchFromGitHub {
13 sha256 = "0p1914wfjggjavw7a0dh2nb7z97z3wrkwrpwxkdc2pj5w5lv405m";
16 buildInputs = [ python3 ];
21 cp export-chrome-bookmarks export-chrome-history $out/bin
22 mkdir -p $out/share/man/man1
23 cp man_pages/*.1 $out/share/man/man1
25 doInstallCheck = true;
26 installCheckPhase = ''
27 bash test/run_tests $out/bin
31 description = "Scripts to save Google Chrome's bookmarks and history as HTML bookmarks files";
32 homepage = "https://github.com/bdesham/chrome-export";
33 license = [ licenses.isc ];
34 maintainers = [ maintainers.bdesham ];
35 platforms = python3.meta.platforms;