projects
/
xonotic
/
xonotic.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'patch-1' into 'master'
[xonotic/xonotic.git]
/
release.nix
1
{
2
nixpkgs ? <nixpkgs>,
3
systems ? [ "i686-linux" "x86_64-linux" ],
4
}:
5
{
6
xonotic = (import <nixpkgs/lib>).genAttrs systems (system:
7
import ./default.nix {
8
pkgs = import nixpkgs { inherit system; };
9
}
10
);
11
}