6562861ba4
svn path=/nixpkgs/trunk/; revision=5021
11 lines
223 B
Nix
11 lines
223 B
Nix
{stdenv, bash, syslog, initscripts}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "syslog-script-0.0.1";
|
|
server = "syslog";
|
|
nicename = "syslog";
|
|
builder = ./builder.sh ;
|
|
inherit bash syslog initscripts;
|
|
script = [./syslog];
|
|
}
|