nixpkgs/pkgs/tools/security/ctmg/default.nix

22 lines
593 B
Nix
Raw Normal View History

2018-06-05 19:05:11 +00:00
{ stdenv, fetchzip }:
2018-06-05 17:29:34 +00:00
stdenv.mkDerivation rec {
2018-06-05 19:05:11 +00:00
name = "ctmg-${version}";
2018-06-05 17:29:34 +00:00
version = "1.2";
2018-06-05 19:05:11 +00:00
src = fetchzip {
url = "https://git.zx2c4.com/ctmg/snapshot/ctmg-${version}.tar.xz";
sha256 = "1i4v8sriwjrmj3yizbl1ysckb711yl9qsn9x45jq0ij1apsydhyc";
2018-06-05 17:29:34 +00:00
};
2018-06-05 19:05:11 +00:00
installPhase = "install -D ctmg.sh $out/bin/ctmg";
2018-06-05 17:29:34 +00:00
meta = with stdenv.lib; {
description = "An encrypted container manager for Linux using cryptsetup";
2018-06-05 19:05:11 +00:00
homepage = https://git.zx2c4.com/ctmg/about/;
license = licenses.isc;
2018-06-05 17:29:34 +00:00
maintainers = with maintainers; [ mrVanDalo ];
2018-06-05 19:05:11 +00:00
platforms = platforms.linux;
2018-06-05 17:29:34 +00:00
};
}