3
0
Fork 0
forked from mirrors/nixpkgs
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 07:00:18 +01:00
with pythonPackages; buildPythonApplication rec {
2017-01-03 11:39:33 +00:00
version = "2.7";
2016-03-26 20:27:36 +00:00
name = "buku-${version}";
src = fetchFromGitHub {
owner = "jarun";
repo = "buku";
2016-09-26 02:16:58 +01:00
rev = "v${version}";
2017-01-03 11:39:33 +00:00
sha256 = "1hb5283xaz1ll3iv5542i6f9qshrdgg33dg7gvghz0fwdh8i0jbk";
2016-03-26 20:27:36 +00:00
};
2016-09-26 02:16:58 +01:00
buildInputs = [
2016-10-21 07:00:18 +01:00
cryptography
beautifulsoup4
2016-09-26 02:16:58 +01:00
];
2016-10-21 07:00:18 +01: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 ];
};
}