mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
10 lines
198 B
Nix
10 lines
198 B
Nix
|
{stdenv, xulrunner, application, launcher}:
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
name = application.name;
|
||
|
|
||
|
builder = ./builder.sh;
|
||
|
inherit xulrunner launcher;
|
||
|
appfile = application ~ "application.ini";
|
||
|
}
|