From f6f24d5bf578a14fa4ac800f967c95841ab7c249 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Sun, 17 Apr 2022 00:33:58 +0800 Subject: [PATCH] pkgs: update metadata --- pkgs/pop-launcher.nix | 4 ++-- pkgs/vpaint.nix | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/pop-launcher.nix b/pkgs/pop-launcher.nix index 19f7c50d..7a6388c2 100644 --- a/pkgs/pop-launcher.nix +++ b/pkgs/pop-launcher.nix @@ -1,6 +1,6 @@ { lib, fetchFromGitHub, rustPlatform, pkg-config, openssl, gtk3 }: -let distributionPluginPath = "\${out}/lib/pop-launcher"; +let distributionPluginPath = "${placeholder "out"}/lib/pop-launcher"; in rustPlatform.buildRustPackage rec { pname = "pop-launcher"; version = "1.1.0"; @@ -46,6 +46,6 @@ in rustPlatform.buildRustPackage rec { meta = with lib; { description = "Modular IPC-based desktop launcher service"; homepage = "https://github.com/pop-os/launcher"; - license = licenses.gpl3; + license = licenses.mpl20; }; } diff --git a/pkgs/vpaint.nix b/pkgs/vpaint.nix index f762555f..16805b56 100644 --- a/pkgs/vpaint.nix +++ b/pkgs/vpaint.nix @@ -24,5 +24,6 @@ stdenv.mkDerivation rec { description = "Experimental vector graphics and 3D animation editor"; homepage = "https://www.vpaint.org/"; license = licenses.asl20; + mainProgram = "VPaint"; }; }