mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 08:36:41 +01:00
28 lines
715 B
Nix
28 lines
715 B
Nix
|
{ stdenv, python27Packages, fetchgit }:
|
||
|
let
|
||
|
py = python27Packages;
|
||
|
python = py.python;
|
||
|
in
|
||
|
py.buildPythonPackage rec {
|
||
|
name = "loxodo-0.20150124";
|
||
|
|
||
|
src = fetchgit {
|
||
|
url = "https://github.com/sommer/loxodo.git";
|
||
|
rev = "6c56efb4511fd6f645ad0f8eb3deafc8071c5795";
|
||
|
sha256 = "02whmv4am8cz401rplplqzbipkyf0wd69z43sd3yw05rh7f3xbs2";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = with py; [ wxPython python.modules.readline ];
|
||
|
|
||
|
postInstall = ''
|
||
|
mv $out/bin/loxodo.py $out/bin/loxodo
|
||
|
'';
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "A Password Safe V3 compatible password vault";
|
||
|
homepage = http://www.christoph-sommer.de/loxodo/;
|
||
|
license = licenses.gpl2Plus;
|
||
|
platforms = platforms.linux;
|
||
|
};
|
||
|
}
|