python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / misc / beep / default.nix
blobfe04d28aa9de0f27408bef9bd2bc9d6d86871218
1 { lib, stdenv, fetchFromGitHub }:
3 # this package is working only as root
4 # in order to work as a non privileged user you would need to suid the bin
6 stdenv.mkDerivation rec {
7   pname = "beep";
8   version = "1.4.12";
10   src = fetchFromGitHub {
11     owner = "spkr-beep";
12     repo = "beep";
13     rev = "v${version}";
14     sha256 = "sha256-gDgGI9F+wW2cN89IwP93PkMv6vixJA2JckF78nxZ+TU=";
15   };
17   makeFlags = [ "prefix=${placeholder "out"}"];
19   meta = with lib; {
20     description = "The advanced PC speaker beeper";
21     homepage = "https://github.com/spkr-beep/beep";
22     license = licenses.gpl2Only;
23     platforms = platforms.linux;
24   };