python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / snow / default.nix
blob6dce95f8cf0f9f11f13e044df86b5b250968717d
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "snow";
5   version = "20130616";
7   src = fetchurl {
8     url = "https://web.archive.org/web/20200304125913if_/http://darkside.com.au/snow/snow-${version}.tar.gz";
9     sha256 = "0r9q45y55z4i0askkxmxrx0jr1620ypd870vz0hx2a6n9skimdy0";
10   };
12   makeFlags = [ "CFLAGS=-O2" ];
14   installPhase = ''
15     install -Dm755 snow -t $out/bin
16   '';
18   meta = with lib; {
19     description = "Conceal messages in ASCII text by appending whitespace to the end of lines";
20     homepage = "http://www.darkside.com.au/snow/";
21     license = licenses.asl20;
22     maintainers = with maintainers; [ siraben ];
23     platforms = platforms.unix;
24   };