nixpkgs/pkgs/applications/misc/buku/default.nix

38 lines
805 B
Nix
Raw Normal View History

2016-03-26 20:27:36 +00:00
{ stdenv, pythonPackages, fetchFromGitHub,
}:
2016-10-21 06:00:18 +00:00
with pythonPackages; buildPythonApplication rec {
2017-02-15 12:33:43 +00:00
version = "2.8";
2016-03-26 20:27:36 +00:00
name = "buku-${version}";
src = fetchFromGitHub {
owner = "jarun";
repo = "buku";
2016-09-26 01:16:58 +00:00
rev = "v${version}";
2017-02-15 12:33:43 +00:00
sha256 = "1gazvij0072lca0jh84i8mhnaxiwg56hcxmrmk2clxd2x213zyjm";
2016-03-26 20:27:36 +00:00
};
2016-09-26 01:16:58 +00:00
buildInputs = [
2016-10-21 06:00:18 +00:00
cryptography
beautifulsoup4
2016-09-26 01:16:58 +00:00
];
2016-10-21 06:00:18 +00:00
propagatedBuildInputs = [ beautifulsoup4 ];
2016-03-26 20:27:36 +00:00
phases = [ "unpackPhase" "installPhase" "fixupPhase" ];
installPhase = ''
make install PREFIX=$out
'';
doCheck = false;
meta = with stdenv.lib; {
description = "Private cmdline bookmark manager";
homepage = https://github.com/jarun/Buku;
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ matthiasbeyer ];
};
}