chrome-export: init at 2.0.2

This commit is contained in:
Benjamin Esham 2019-06-15 21:38:26 -04:00
parent 12a0083503
commit b20cdceaec
2 changed files with 39 additions and 0 deletions

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;
};
}

View file

@ -24155,6 +24155,8 @@ in
vdrPlugins = recurseIntoAttrs (callPackages ../applications/video/vdr/plugins.nix { });
wrapVdr = callPackage ../applications/video/vdr/wrapper.nix {};
chrome-export = callPackage ../tools/misc/chrome-export {};
chrome-gnome-shell = callPackage ../desktops/gnome-3/extensions/chrome-gnome-shell {};
chrome-token-signing = libsForQt5.callPackage ../tools/security/chrome-token-signing {};