Update default.nix

Cosmetic change
This commit is contained in:
ndowens 2017-03-19 13:02:08 -05:00 committed by GitHub
parent 01f706b30b
commit 9fae97b719

View File

@ -1,5 +1,7 @@
{ stdenv, fetchurl, gtk2, which, pkgconfig, intltool, file }: { stdenv, fetchurl, gtk2, which, pkgconfig, intltool, file }:
with stdenv.lib;
let let
version = "1.30.1"; version = "1.30.1";
in in
@ -13,8 +15,9 @@ stdenv.mkDerivation rec {
}; };
NIX_LDFLAGS = if stdenv.isDarwin then "-lintl" else null; NIX_LDFLAGS = if stdenv.isDarwin then "-lintl" else null;
buildInputs = [ gtk2 which pkgconfig intltool file ]; nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gtk2 which intltool file ];
doCheck = true; doCheck = true;
@ -47,9 +50,9 @@ stdenv.mkDerivation rec {
- Simple project management - Simple project management
- Plugin interface - Plugin interface
''; '';
homepage = "http://www.geany.org/"; homepage = http://www.geany.org/;
license = "GPL"; license = "GPL";
maintainers = [ stdenv.lib.maintainers.bbenoist ]; maintainers = [ maintainers.bbenoist ];
platforms = stdenv.lib.platforms.all; platforms = platforms.all;
}; };
} }