Added basic default.nix

This commit is contained in:
buffet 2018-09-27 16:43:07 +02:00
parent 48d9db8dee
commit 0f3141e5c6

19
default.nix Normal file
View file

@ -0,0 +1,19 @@
{ stdenv, Literate }:
stdenv.mkDerivation rec {
name = "waffle-${version}";
version = "NaV";
src = ./.;
buildInputs = [ Literate ];
makeFlags = [ "PREFIX=$(out)" ];
meta = with stdenv.lib; {
description = "A fully manual tiling wm";
homepage = https://github.com/buffet/wmaffle;
license = licenses.mpl20;
platforms = platforms.unix;
};
}