From 9fae97b7199d2e9ef34e79ca6cae4e9ba9b7f92e Mon Sep 17 00:00:00 2001 From: ndowens Date: Sun, 19 Mar 2017 13:02:08 -0500 Subject: [PATCH] Update default.nix Cosmetic change --- pkgs/applications/editors/geany/default.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/editors/geany/default.nix b/pkgs/applications/editors/geany/default.nix index 85b7ccb0be6..680542cfdfe 100644 --- a/pkgs/applications/editors/geany/default.nix +++ b/pkgs/applications/editors/geany/default.nix @@ -1,5 +1,7 @@ { stdenv, fetchurl, gtk2, which, pkgconfig, intltool, file }: +with stdenv.lib; + let version = "1.30.1"; in @@ -13,8 +15,9 @@ stdenv.mkDerivation rec { }; NIX_LDFLAGS = if stdenv.isDarwin then "-lintl" else null; - - buildInputs = [ gtk2 which pkgconfig intltool file ]; + + nativeBuildInputs = [ pkgconfig ]; + buildInputs = [ gtk2 which intltool file ]; doCheck = true; @@ -47,9 +50,9 @@ stdenv.mkDerivation rec { - Simple project management - Plugin interface ''; - homepage = "http://www.geany.org/"; + homepage = http://www.geany.org/; license = "GPL"; - maintainers = [ stdenv.lib.maintainers.bbenoist ]; - platforms = stdenv.lib.platforms.all; + maintainers = [ maintainers.bbenoist ]; + platforms = platforms.all; }; }