mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
arcan: create skeleton/infrastructure
Arcan is a powerful development framework for creating virtually anything from user interfaces for specialized embedded applications all the way to full-blown standalone desktop environments. At its heart lies a robust and portable multimedia engine, with a well-tested and well-documented Lua scripting interface. The development emphasizes security, debuggability and performance -- guided by a principle of least surprise in terms of API design. (Descriptions taken from official Github site!)
This commit is contained in:
parent
5e8bfbb4c7
commit
c23b5bd412
2 changed files with 8 additions and 0 deletions
4
pkgs/desktops/arcan/default.nix
Normal file
4
pkgs/desktops/arcan/default.nix
Normal file
|
@ -0,0 +1,4 @@
|
|||
{ callPackage, lib, pkgs }:
|
||||
|
||||
rec {
|
||||
}
|
|
@ -29557,6 +29557,10 @@ in
|
|||
gtk = gtk2;
|
||||
};
|
||||
|
||||
arcan = recurseIntoAttrs (callPackage ../desktops/arcan {
|
||||
callPackage = newScope pkgs.arcan;
|
||||
});
|
||||
|
||||
xfce = recurseIntoAttrs (callPackage ../desktops/xfce { });
|
||||
|
||||
xrandr-invert-colors = callPackage ../applications/misc/xrandr-invert-colors { };
|
||||
|
|
Loading…
Reference in a new issue