From 38e9d3b517abdd4398003e4be67c4656780ed596 Mon Sep 17 00:00:00 2001 From: nek0 Date: Tue, 27 Mar 2018 23:31:52 +0200 Subject: [PATCH] nix expression --- affection.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 affection.nix diff --git a/affection.nix b/affection.nix new file mode 100644 index 0000000..9085818 --- /dev/null +++ b/affection.nix @@ -0,0 +1,18 @@ +{ mkDerivation, base, bytestring, clock, containers, glib, linear +, monad-loops, monad-parallel, mtl, OpenGL, sdl2, stdenv, stm, text +, uuid, vector +}: +mkDerivation { + pname = "affection"; + version = "0.0.0.9"; + src = ./.; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring clock containers glib linear monad-loops + monad-parallel mtl OpenGL sdl2 stm text uuid vector + ]; + homepage = "https://github.com/nek0/affection#readme"; + description = "A simple Game Engine using SDL"; + license = stdenv.lib.licenses.lgpl3; +}