about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/chrome-export/default.nix
blob: 8639f6f6f794747657e254ba3bc6d48cbbc8df49 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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;
  };
}