Added basic default.nix
This commit is contained in:
parent
48d9db8dee
commit
0f3141e5c6
1 changed files with 19 additions and 0 deletions
19
default.nix
Normal file
19
default.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Add table
Reference in a new issue