mirror of
https://github.com/tuxdotrs/tawm.git
synced 2025-07-05 12:46:34 +05:30
23 lines
379 B
Nix
23 lines
379 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
}: let
|
|
awesome = ./src;
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "tawm";
|
|
version = "0.1.0";
|
|
|
|
buildCommand = ''
|
|
mkdir -p $out
|
|
cp -r ${awesome}/* "$out/"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "tux's awesomeWM config";
|
|
homepage = "https://tux.rs";
|
|
platforms = platforms.all;
|
|
license = licenses.gpl3;
|
|
};
|
|
}
|