Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3819fb300b98
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 80da379db7d0
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Oct 28, 2020

  1. snow: init at 20130616

    siraben committed Oct 28, 2020
    Copy the full SHA
    52366ba View commit details

Commits on Nov 26, 2020

  1. Merge pull request #101831 from siraben/snow-init

    snow: init at 20130616
    SuperSandro2000 authored Nov 26, 2020
    Copy the full SHA
    80da379 View commit details
Showing with 27 additions and 0 deletions.
  1. +25 −0 pkgs/tools/security/snow/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
25 changes: 25 additions & 0 deletions pkgs/tools/security/snow/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -15834,6 +15834,8 @@ in

snappy = callPackage ../development/libraries/snappy { };

snow = callPackage ../tools/security/snow { };

soapyairspy = callPackage ../applications/radio/soapyairspy { };

soapybladerf = callPackage ../applications/radio/soapybladerf { };