This website works better with JavaScript.
Home
Help
Sign In
ngws
/
a-robots-conundrum
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Simplify nix integration a bit
master
Niels G. W. Serup
3 months ago
parent
21e4b12672
commit
c5e7a7b60c
Signed by:
ngws
GPG Key ID:
38EEEBCE67324F19
2 changed files
with
6 additions
and
5 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+0
-5
default.nix
+6
-0
shell.nix
+ 0
- 5
default.nix
View File
@ -1,5 +0,0 @@
with
import
<nixpkgs>
{
}
;
stdenv
.
mkDerivation
{
name
=
"
a
-
r
o
b
o
t
s
-
c
o
n
u
n
d
r
u
m
"
;
buildInputs
=
[
(
python27
.
withPackages
(
ps
:
with
ps
;
[
pygame
numpy
]
)
)
]
;
}
+ 6
- 0
shell.nix
View File
@ -0,0 +1,6 @@
# Use this file with nix-shell or similar tools; see https://nixos.org/
with
import
<nixpkgs>
{
}
;
mkShell
{
buildInputs
=
[
(
python27
.
withPackages
(
ps
:
with
ps
;
[
pygame
numpy
]
)
)
]
;
}
Write
Preview
Loading…
Cancel
Save