uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
35
pkgs/tools/backup/iceshelf/default.nix
Normal file
35
pkgs/tools/backup/iceshelf/default.nix
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
{ lib, fetchFromGitHub, git, awscli, python3 }:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "iceshelf";
|
||||
version = "unstable-2019-07-03";
|
||||
|
||||
format = "other";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mrworf";
|
||||
repo = pname;
|
||||
rev = "26768dde3fc54fa412e523eb8f8552e866b4853b";
|
||||
sha256 = "08rcbd14vn7312rmk2hyvdzvhibri31c4r5lzdrwb1n1y9q761qm";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
git
|
||||
awscli
|
||||
python3.pkgs.python-gnupg
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin $out/share/doc/${pname} $out/${python3.sitePackages}
|
||||
cp -v iceshelf iceshelf-restore $out/bin
|
||||
cp -v iceshelf.sample.conf $out/share/doc/${pname}/
|
||||
cp -rv modules $out/${python3.sitePackages}
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A simple tool to allow storage of signed, encrypted, incremental backups using Amazon's Glacier storage";
|
||||
license = licenses.lgpl2;
|
||||
homepage = "https://github.com/mrworf/iceshelf";
|
||||
maintainers = with maintainers; [ mmahut ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue