geany: fix license

geany-with-vte:  inherit meta data from geany
This commit is contained in:
Markus Kowalewski 2018-08-20 19:35:29 +02:00
parent 98c7cf76a6
commit 24513e08d7
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ stdenv.mkDerivation rec {
- Plugin interface
'';
homepage = https://www.geany.org/;
license = "GPL";
license = licenses.gpl2;
maintainers = [];
platforms = platforms.all;
};

View File

@ -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