evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / nm / nms / package.nix
blobcf890dc44956265517ae34ae58f6523e854b54a2
1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
4   pname = "nms";
5   version = "1.0.1";
7   src = fetchFromGitHub {
8     owner = "bartobri";
9     repo = "no-more-secrets";
10     rev = "v${version}";
11     sha256 = "sha256-QVCEpplsZCSQ+Fq1LBtCuPBvnzgLsmLcSrxR+e4nA5I=";
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 = [ ];
25     platforms = platforms.unix;
26   };