2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchzip }:
|
2018-06-05 18:29:34 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "ctmg";
|
2018-06-05 18:29:34 +01:00
|
|
|
version = "1.2";
|
|
|
|
|
2018-06-05 20:05:11 +01:00
|
|
|
src = fetchzip {
|
|
|
|
url = "https://git.zx2c4.com/ctmg/snapshot/ctmg-${version}.tar.xz";
|
|
|
|
sha256 = "1i4v8sriwjrmj3yizbl1ysckb711yl9qsn9x45jq0ij1apsydhyc";
|
2018-06-05 18:29:34 +01:00
|
|
|
};
|
|
|
|
|
2018-06-05 20:05:11 +01:00
|
|
|
installPhase = "install -D ctmg.sh $out/bin/ctmg";
|
2018-06-05 18:29:34 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-06-05 18:29:34 +01:00
|
|
|
description = "An encrypted container manager for Linux using cryptsetup";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://git.zx2c4.com/ctmg/about/";
|
2018-06-05 20:05:11 +01:00
|
|
|
license = licenses.isc;
|
2018-06-05 18:29:34 +01:00
|
|
|
maintainers = with maintainers; [ mrVanDalo ];
|
2018-06-05 20:05:11 +01:00
|
|
|
platforms = platforms.linux;
|
2018-06-05 18:29:34 +01:00
|
|
|
};
|
|
|
|
}
|