mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
ff2c9a2274
beep includes <linux/xyz.h> C header files, so I'm setting platforms to Linux only.
26 lines
671 B
Nix
26 lines
671 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
# this package is working only as root
|
|
# in order to work as a non privileged user you would need to suid the bin
|
|
|
|
stdenv.mkDerivation {
|
|
name = "beep-1.3";
|
|
src = fetchurl {
|
|
url = http://www.johnath.com/beep/beep-1.3.tar.gz;
|
|
sha256 = "0bgch6jq5cahakk3kbr9549iysf2dik09afixxy5brbxk1xfzb2r";
|
|
};
|
|
|
|
makeFlags = "INSTALL_DIR=\${out}/bin/ MAN_DIR=\${out}/man/man1/";
|
|
|
|
preInstall = ''
|
|
mkdir -p $out/bin
|
|
mkdir -p $out/man/man1
|
|
'';
|
|
meta = {
|
|
description = "The advanced PC speaker beeper";
|
|
homepage = http://www.johnath.com/beep/;
|
|
license = stdenv.lib.licenses.gpl2;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|