about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 4a67c9e91f00..9c256f82dabb 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -608,6 +608,14 @@ self: super: {
     (bustle: bustle.override { hgettext = null; })
     (bustle: disableCabalFlag bustle "hgettext")
 
+    # Bustle specifies OtherLicense even though the code is actually LGPL
+    # https://gitlab.freedesktop.org/bustle/bustle/merge_requests/17
+    (bustle: bustle.overrideAttrs (attrs: {
+      meta = builtins.removeAttrs attrs.meta [ "hydraPlatforms" ] // {
+        license = pkgs.lib.licenses.lgpl21Plus;
+      };
+    }))
+
     # Install icons, metadata and cli program.
     (bustle: overrideCabal bustle (drv: {
       buildDepends = [ pkgs.libpcap ];