1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
9 repo = "no-more-secrets";
11 sha256 = "sha256-QVCEpplsZCSQ+Fq1LBtCuPBvnzgLsmLcSrxR+e4nA5I=";
14 buildFlags = [ "nms" "sneakers" ];
15 installFlags = [ "prefix=$(out)" ];
18 homepage = "https://github.com/bartobri/no-more-secrets";
20 A command line tool that recreates the famous data decryption
21 effect seen in the 1992 movie Sneakers.
23 license = licenses.gpl3;
25 platforms = platforms.unix;