about summary refs log tree commit diff
path: root/pkgs/applications/editors/geany
diff options
context:
space:
mode:
authorndowens <ndowens04@gmail.com>2017-03-19 13:02:08 -0500
committerGitHub <noreply@github.com>2017-03-19 13:02:08 -0500
commit9fae97b7199d2e9ef34e79ca6cae4e9ba9b7f92e (patch)
treed10c46099185dc95e5548fb94ed6f84d870058b0 /pkgs/applications/editors/geany
parent01f706b30b6016103401492bfa2c767cbc119650 (diff)
downloadnixlib-9fae97b7199d2e9ef34e79ca6cae4e9ba9b7f92e.tar
nixlib-9fae97b7199d2e9ef34e79ca6cae4e9ba9b7f92e.tar.gz
nixlib-9fae97b7199d2e9ef34e79ca6cae4e9ba9b7f92e.tar.bz2
nixlib-9fae97b7199d2e9ef34e79ca6cae4e9ba9b7f92e.tar.lz
nixlib-9fae97b7199d2e9ef34e79ca6cae4e9ba9b7f92e.tar.xz
nixlib-9fae97b7199d2e9ef34e79ca6cae4e9ba9b7f92e.tar.zst
nixlib-9fae97b7199d2e9ef34e79ca6cae4e9ba9b7f92e.zip
Update default.nix
Cosmetic change
Diffstat (limited to 'pkgs/applications/editors/geany')
-rw-r--r--pkgs/applications/editors/geany/default.nix13
1 files changed, 8 insertions, 5 deletions
diff --git a/pkgs/applications/editors/geany/default.nix b/pkgs/applications/editors/geany/default.nix
index 85b7ccb0be6f..680542cfdfee 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;
   };
 }