2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub }:
|
2018-05-19 22:26:06 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "nms";
|
2021-11-03 16:41:44 +00:00
|
|
|
version = "1.0.1";
|
2018-05-19 22:26:06 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "bartobri";
|
|
|
|
repo = "no-more-secrets";
|
|
|
|
rev = "v${version}";
|
2021-11-03 16:41:44 +00:00
|
|
|
sha256 = "sha256-QVCEpplsZCSQ+Fq1LBtCuPBvnzgLsmLcSrxR+e4nA5I=";
|
2018-05-19 22:26:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildFlags = [ "nms" "sneakers" ];
|
|
|
|
installFlags = [ "prefix=$(out)" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-05-19 22:26:06 +01:00
|
|
|
homepage = "https://github.com/bartobri/no-more-secrets";
|
|
|
|
description = ''
|
|
|
|
A command line tool that recreates the famous data decryption
|
|
|
|
effect seen in the 1992 movie Sneakers.
|
|
|
|
'';
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.infinisil ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|