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
21
pkgs/tools/security/ctmg/default.nix
Normal file
21
pkgs/tools/security/ctmg/default.nix
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{ lib, stdenv, fetchzip }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "ctmg";
|
||||
version = "1.2";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://git.zx2c4.com/ctmg/snapshot/ctmg-${version}.tar.xz";
|
||||
sha256 = "1i4v8sriwjrmj3yizbl1ysckb711yl9qsn9x45jq0ij1apsydhyc";
|
||||
};
|
||||
|
||||
installPhase = "install -D ctmg.sh $out/bin/ctmg";
|
||||
|
||||
meta = with lib; {
|
||||
description = "An encrypted container manager for Linux using cryptsetup";
|
||||
homepage = "https://git.zx2c4.com/ctmg/about/";
|
||||
license = licenses.isc;
|
||||
maintainers = with maintainers; [ mrVanDalo ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue