diff options
Diffstat (limited to 'pkgs/theme')
-rw-r--r-- | pkgs/theme/myswaylock.nix | 4 | ||||
-rw-r--r-- | pkgs/theme/swaybackground.nix | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/theme/myswaylock.nix b/pkgs/theme/myswaylock.nix index 6b74ce1..64f55f2 100644 --- a/pkgs/theme/myswaylock.nix +++ b/pkgs/theme/myswaylock.nix @@ -6,6 +6,10 @@ stdenvNoCC.mkDerivation { pname = "myswaylock"; version = "1.0"; + meta = with lib; { + license = licenses.gpl3; + platforms = platforms.linux; + }; nativeBuildInputs = [ makeWrapper ]; phases = [ "installPhase" ]; diff --git a/pkgs/theme/swaybackground.nix b/pkgs/theme/swaybackground.nix index 856d774..6675d24 100644 --- a/pkgs/theme/swaybackground.nix +++ b/pkgs/theme/swaybackground.nix @@ -6,6 +6,10 @@ stdenvNoCC.mkDerivation { pname = "swaybackground"; version = "1.0"; + meta = with lib; { + license = licenses.gpl3; + platforms = platforms.linux; + }; nativeBuildInputs = [ makeWrapper ]; phases = [ "installPhase" ]; |