ctmg: add 1.2
This commit is contained in:
parent
f98272d6e2
commit
2a0ec8b445
25
pkgs/tools/security/ctmg/default.nix
Normal file
25
pkgs/tools/security/ctmg/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ stdenv, fetchurl, ... }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "ctmg-${version}";
|
||||
version = "1.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://git.zx2c4.com/ctmg/snapshot/ctmg-${version}.tar.xz";
|
||||
sha256 = "1djxrf66abl63cybxfgjshr8avbp6nq158d0jx4mlfa3pdj32kv9";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp ctmg.sh $out/bin/ctmg
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "An encrypted container manager for Linux using cryptsetup";
|
||||
homepage = https://git.zx2c4.com/ctmg/about/;
|
||||
license = licenses.free;
|
||||
maintainers = with maintainers; [ mrVanDalo ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -7816,6 +7816,8 @@ with pkgs;
|
||||
|
||||
ctodo = callPackage ../applications/misc/ctodo { };
|
||||
|
||||
ctmg = callPackage ../tools/security/ctmg { };
|
||||
|
||||
cmake_2_8 = callPackage ../development/tools/build-managers/cmake/2.8.nix { };
|
||||
|
||||
cmake = libsForQt5.callPackage ../development/tools/build-managers/cmake { };
|
||||
|
Loading…
Reference in New Issue
Block a user