snow: init at 20130616
This commit is contained in:
parent
4c07f77124
commit
52366ba8ca
25
pkgs/tools/security/snow/default.nix
Normal file
25
pkgs/tools/security/snow/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "snow";
|
||||
version = "20130616";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://web.archive.org/web/20200304125913if_/http://darkside.com.au/snow/snow-${version}.tar.gz";
|
||||
sha256 = "0r9q45y55z4i0askkxmxrx0jr1620ypd870vz0hx2a6n9skimdy0";
|
||||
};
|
||||
|
||||
makeFlags = [ "CFLAGS=-O2" ];
|
||||
|
||||
installPhase = ''
|
||||
install -Dm755 snow -t $out/bin
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Conceal messages in ASCII text by appending whitespace to the end of lines";
|
||||
homepage = "http://www.darkside.com.au/snow/";
|
||||
license = licenses.apsl20;
|
||||
maintainers = with maintainers; [ siraben ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
@ -15487,6 +15487,8 @@ in
|
||||
|
||||
snappy = callPackage ../development/libraries/snappy { };
|
||||
|
||||
snow = callPackage ../tools/security/snow { };
|
||||
|
||||
soapyairspy = callPackage ../applications/radio/soapyairspy { };
|
||||
|
||||
soapybladerf = callPackage ../applications/radio/soapybladerf { };
|
||||
|
Loading…
Reference in New Issue
Block a user