summaryrefslogtreecommitdiff
path: root/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/default.nix b/default.nix
new file mode 100644
index 0000000..665253c
--- /dev/null
+++ b/default.nix
@@ -0,0 +1,10 @@
1{ stdenv
2}:
3
4stdenv.mkDerivation {
5 name = "sysprak.exc";
6 src = ./.;
7 preInstall = ''
8 sed -i s,/usr/local,$out, Makefile
9 '';
10}