nixpkgs/pkgs/applications/misc/buku/default.nix
Edward Tjörnhammar d6f1c52735
buku: 2.4 -> 2.5
2016-10-21 08:00:18 +02:00

38 lines
805 B
Nix

{ stdenv, pythonPackages, fetchFromGitHub,
}:
with pythonPackages; buildPythonApplication rec {
version = "2.5";
name = "buku-${version}";
src = fetchFromGitHub {
owner = "jarun";
repo = "buku";
rev = "v${version}";
sha256 = "0m6km37zylinsblwm2p8pm760xlsf9m82xyws3762xs8zxbnfmsd";
};
buildInputs = [
cryptography
beautifulsoup4
];
propagatedBuildInputs = [ beautifulsoup4 ];
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 ];
};
}