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: 8279e5faab54
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 33e33eebbe4f
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Aug 7, 2019

  1. scream-receivers: init at 3.3

    ivan committed Aug 7, 2019
    Copy the full SHA
    52fcb87 View commit details

Commits on Aug 23, 2019

  1. Merge pull request #66252 from ivan/scream-receivers

    scream-receivers: init at 3.3
    srhb authored Aug 23, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    33e33ee View commit details
Showing with 60 additions and 0 deletions.
  1. +56 −0 pkgs/misc/scream-receivers/default.nix
  2. +4 −0 pkgs/top-level/all-packages.nix
56 changes: 56 additions & 0 deletions pkgs/misc/scream-receivers/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{ stdenv, lib, fetchFromGitHub, alsaLib
, pulseSupport ? false, libpulseaudio ? null
}:

stdenv.mkDerivation rec {
pname = "scream-receivers";
version = "3.3";

src = fetchFromGitHub {
owner = "duncanthrax";
repo = "scream";
rev = "${version}";
sha256 = "1iqhs7m0fv3vfld7h288j5j0jc5xdihaghd0jd9qrk68mj2g6g9w";
};

buildInputs = [ alsaLib ] ++ lib.optional pulseSupport libpulseaudio;

buildPhase = ''
(cd Receivers/alsa && make)
(cd Receivers/alsa-ivshmem && make)
'' + lib.optionalString pulseSupport ''
(cd Receivers/pulseaudio && make)
(cd Receivers/pulseaudio-ivshmem && make)
'';

installPhase = ''
mkdir -p $out/bin
mv ./Receivers/alsa/scream-alsa $out/bin/
mv ./Receivers/alsa-ivshmem/scream-ivshmem-alsa $out/bin/
'' + lib.optionalString pulseSupport ''
mv ./Receivers/pulseaudio/scream-pulse $out/bin/
mv ./Receivers/pulseaudio-ivshmem/scream-ivshmem-pulse $out/bin/
'';

doInstallCheck = true;
installCheckPhase = ''
export PATH=$PATH:$out/bin
set -o verbose
set +o pipefail
# Programs exit with code 1 when testing help, so grep for a string
scream-alsa -h 2>&1 | grep -q Usage:
scream-ivshmem-alsa 2>&1 | grep -q Usage:
'' + lib.optionalString pulseSupport ''
scream-pulse -h 2>&1 | grep -q Usage:
scream-ivshmem-pulse 2>&1 | grep -q Usage:
'';

meta = with lib; {
description = "Audio receivers for the Scream virtual network sound card";
homepage = "https://github.com/duncanthrax/scream";
license = licenses.mspl;
platforms = platforms.linux;
maintainers = [ maintainers.ivan ];
};
}
4 changes: 4 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -5937,6 +5937,10 @@ in

scdoc = callPackage ../tools/typesetting/scdoc { };

scream-receivers = callPackage ../misc/scream-receivers {
pulseSupport = config.pulseaudio or false;
};

screen = callPackage ../tools/misc/screen {
inherit (darwin.apple_sdk.libs) utmp;
};