commit
e591cfbec2
24
pkgs/misc/beep/default.nix
Normal file
24
pkgs/misc/beep/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ 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;
|
||||||
|
md5 = "49c340ceb95dbda3f97b2daafac7892a";
|
||||||
|
};
|
||||||
|
|
||||||
|
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 = "GPLv2";
|
||||||
|
};
|
||||||
|
}
|
@ -9947,6 +9947,8 @@ let
|
|||||||
|
|
||||||
auctex = callPackage ../tools/typesetting/tex/auctex { };
|
auctex = callPackage ../tools/typesetting/tex/auctex { };
|
||||||
|
|
||||||
|
beep = callPackage ../misc/beep { };
|
||||||
|
|
||||||
cups = callPackage ../misc/cups { libusb = libusb1; };
|
cups = callPackage ../misc/cups { libusb = libusb1; };
|
||||||
|
|
||||||
cups_pdf_filter = callPackage ../misc/cups/pdf-filter.nix { };
|
cups_pdf_filter = callPackage ../misc/cups/pdf-filter.nix { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user