chrome-export: init at 2.0.2

This commit is contained in:
Benjamin Esham
2019-06-17 22:06:52 -04:00
parent 12a0083503
commit b20cdceaec
2 changed files with 39 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
{ stdenv, fetchFromGitHub
, python3
}:
stdenv.mkDerivation rec {
pname = "chrome-export";
version = "2.0.2";
src = fetchFromGitHub {
owner = "bdesham";
repo = pname;
rev = "v${version}";
sha256 = "0p1914wfjggjavw7a0dh2nb7z97z3wrkwrpwxkdc2pj5w5lv405m";
};
buildInputs = [ python3 ];
dontBuild = true;
installPhase = ''
mkdir -p $out/bin
cp export-chrome-bookmarks export-chrome-history $out/bin
mkdir -p $out/share/man/man1
cp man_pages/*.1 $out/share/man/man1
'';
doInstallCheck = true;
installCheckPhase = ''
bash test/run_tests $out/bin
'';
meta = with stdenv.lib; {
description = "Scripts to save Google Chrome's bookmarks and history as HTML bookmarks files";
homepage = "https://github.com/bdesham/chrome-export";
license = [ licenses.isc ];
maintainers = [ maintainers.bdesham ];
platforms = python3.meta.platforms;
};
}