summary refs log tree commit diff
diff options
context:
space:
mode:
authorMarkus Kowalewski <markus.kowalewski@gmail.com>2018-08-20 19:35:29 +0200
committerMarkus Kowalewski <markus.kowalewski@gmail.com>2018-08-20 19:35:29 +0200
commit24513e08d7e773b1b81b7baed9e70e371f888666 (patch)
tree23560c3f42fb334971350311bc41061828e2fc77
parent98c7cf76a64690c4d27c20b7b865fa6017fcb9de (diff)
downloadnixlib-24513e08d7e773b1b81b7baed9e70e371f888666.tar
nixlib-24513e08d7e773b1b81b7baed9e70e371f888666.tar.gz
nixlib-24513e08d7e773b1b81b7baed9e70e371f888666.tar.bz2
nixlib-24513e08d7e773b1b81b7baed9e70e371f888666.tar.lz
nixlib-24513e08d7e773b1b81b7baed9e70e371f888666.tar.xz
nixlib-24513e08d7e773b1b81b7baed9e70e371f888666.tar.zst
nixlib-24513e08d7e773b1b81b7baed9e70e371f888666.zip
geany: fix license
geany-with-vte:  inherit meta data from geany
-rw-r--r--pkgs/applications/editors/geany/default.nix2
-rw-r--r--pkgs/applications/editors/geany/with-vte.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/editors/geany/default.nix b/pkgs/applications/editors/geany/default.nix
index ed77e6f4b471..24954a602ccc 100644
--- a/pkgs/applications/editors/geany/default.nix
+++ b/pkgs/applications/editors/geany/default.nix
@@ -45,7 +45,7 @@ stdenv.mkDerivation rec {
       - Plugin interface
     '';
     homepage = https://www.geany.org/;
-    license = "GPL";
+    license = licenses.gpl2;
     maintainers = [];
     platforms = platforms.all;
   };
diff --git a/pkgs/applications/editors/geany/with-vte.nix b/pkgs/applications/editors/geany/with-vte.nix
index 7689ebad0f01..ac35560c7f63 100644
--- a/pkgs/applications/editors/geany/with-vte.nix
+++ b/pkgs/applications/editors/geany/with-vte.nix
@@ -1,7 +1,7 @@
 { runCommand, makeWrapper, geany, gnome2 }:
 let name = builtins.replaceStrings ["geany-"] ["geany-with-vte-"] geany.name;
 in
-runCommand "${name}" { nativeBuildInputs = [ makeWrapper ]; } "
+runCommand "${name}" { nativeBuildInputs = [ makeWrapper ]; inherit (geany.meta); } "
    mkdir -p $out
    ln -s ${geany}/share $out
    makeWrapper ${geany}/bin/geany $out/bin/geany --prefix LD_LIBRARY_PATH : ${gnome2.vte}/lib