mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 22:20:30 +03:00
Adding ddar, unix de-duplicating archiver.
This commit is contained in:
parent
c64c2ff254
commit
d93c6ffa10
1 changed files with 20 additions and 0 deletions
|
@ -2056,6 +2056,26 @@ let
|
|||
};
|
||||
});
|
||||
|
||||
ddar = buildPythonPackage {
|
||||
name = "ddar-1.0";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://github.com/basak/ddar/archive/v1.0.tar.gz";
|
||||
sha256 = "08lv7hrbhcv6hbl01sx8fgx3l8s2nn8rvcicdidafwm87bvi2nmr";
|
||||
};
|
||||
|
||||
preBuild = ''
|
||||
make -f Makefile.prep synctus/ddar_pb2.py
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = with self; [ protobuf modules.sqlite3 ];
|
||||
|
||||
meta = {
|
||||
description = "Unix de-duplicating archiver";
|
||||
license = licenses.gpl3;
|
||||
homepage = https://github.com/basak/ddar;
|
||||
};
|
||||
};
|
||||
|
||||
decorator = buildPythonPackage rec {
|
||||
name = "decorator-3.4.0";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue