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

37 lines
783 B
Nix
Raw Normal View History

2016-03-26 20:27:36 +00:00
{ stdenv, pythonPackages, fetchFromGitHub,
}:
pythonPackages.buildPythonApplication rec {
2016-09-26 01:16:58 +00:00
version = "2.4";
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}";
sha256 = "0rmvlpp1pzzgn1hf87ksigj9kp60gfwkvxymb4wiz7dqa57b1q0n";
2016-03-26 20:27:36 +00:00
};
2016-09-26 01:16:58 +00:00
buildInputs = [
pythonPackages.cryptography
pythonPackages.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 ];
};
}