linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / misc / nms / default.nix
blob8edddc4238dfcc5d4acced6256772f104c799f7d
1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
4   pname = "nms";
5   version = "0.3.3";
7   src = fetchFromGitHub {
8     owner = "bartobri";
9     repo = "no-more-secrets";
10     rev = "v${version}";
11     sha256 = "1zfv4qabikf8w9winsr4brxrdvs3f0d7xvydksyx8bydadsm2v2h";
12   };
14   buildFlags = [ "nms" "sneakers" ];
15   installFlags = [ "prefix=$(out)" ];
17   meta = with lib; {
18     homepage = "https://github.com/bartobri/no-more-secrets";
19     description = ''
20       A command line tool that recreates the famous data decryption
21       effect seen in the 1992 movie Sneakers.
22     '';
23     license = licenses.gpl3;
24     maintainers = [ maintainers.infinisil ];
25     platforms = platforms.unix;
26   };