mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 03:15:56 +03:00
buku: init at 1.8
This commit is contained in:
parent
daf787a96d
commit
45604fc46b
34
pkgs/applications/misc/buku/default.nix
Normal file
34
pkgs/applications/misc/buku/default.nix
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{ stdenv, pythonPackages, fetchFromGitHub,
|
||||||
|
encryptionSupport ? false
|
||||||
|
}:
|
||||||
|
|
||||||
|
pythonPackages.buildPythonApplication rec {
|
||||||
|
version = "1.8";
|
||||||
|
name = "buku-${version}";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "jarun";
|
||||||
|
repo = "buku";
|
||||||
|
rev = "53d48ee56a3abfb53b94ed25fb620ee759141c96";
|
||||||
|
sha256 = "185d3gndw20c3l6f3mf0iq4qapm8g30bl0hn0wsqpp36vl0bpq28";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = stdenv.lib.optional encryptionSupport pythonPackages.pycrypto;
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -915,6 +915,10 @@ in
|
|||||||
|
|
||||||
burp = callPackage ../tools/backup/burp { };
|
burp = callPackage ../tools/backup/burp { };
|
||||||
|
|
||||||
|
buku = callPackage ../applications/misc/buku {
|
||||||
|
pythonPackages = python3Packages;
|
||||||
|
};
|
||||||
|
|
||||||
byzanz = callPackage ../applications/video/byzanz {};
|
byzanz = callPackage ../applications/video/byzanz {};
|
||||||
|
|
||||||
ori = callPackage ../tools/backup/ori { };
|
ori = callPackage ../tools/backup/ori { };
|
||||||
|
Loading…
Reference in New Issue
Block a user