nms: init at 0.3.3 (#40707)
This commit is contained in:
parent
bf049151a7
commit
bf629981a6
27
pkgs/tools/misc/nms/default.nix
Normal file
27
pkgs/tools/misc/nms/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ stdenv, fetchFromGitHub }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "nms-${version}";
|
||||||
|
version = "0.3.3";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "bartobri";
|
||||||
|
repo = "no-more-secrets";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1zfv4qabikf8w9winsr4brxrdvs3f0d7xvydksyx8bydadsm2v2h";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildFlags = [ "nms" "sneakers" ];
|
||||||
|
installFlags = [ "prefix=$(out)" ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
@ -4019,6 +4019,8 @@ with pkgs;
|
|||||||
|
|
||||||
nitrogen = callPackage ../tools/X11/nitrogen {};
|
nitrogen = callPackage ../tools/X11/nitrogen {};
|
||||||
|
|
||||||
|
nms = callPackage ../tools/misc/nms { };
|
||||||
|
|
||||||
notify-desktop = callPackage ../tools/misc/notify-desktop {};
|
notify-desktop = callPackage ../tools/misc/notify-desktop {};
|
||||||
|
|
||||||
nkf = callPackage ../tools/text/nkf {};
|
nkf = callPackage ../tools/text/nkf {};
|
||||||
|
Loading…
Reference in New Issue
Block a user