fix grammar errors

+7 -7
+1 -1
doc/languages-frameworks/python.md
··· 599 src = ./.; } 600 601 Running `nix-shell` with no arguments should give you 602 - the environment in which the package would be build with 603 `nix-build`. 604 605 Shortcut to setup environments with C headers/libraries and python packages:
··· 599 src = ./.; } 600 601 Running `nix-shell` with no arguments should give you 602 + the environment in which the package would be built with 603 `nix-build`. 604 605 Shortcut to setup environments with C headers/libraries and python packages:
+2 -2
nixos/modules/system/boot/loader/grub/grub.nix
··· 348 default = false; 349 type = types.bool; 350 description = '' 351 - Whether GRUB should be build against libzfs. 352 ZFS support is only available for GRUB v2. 353 This option is ignored for GRUB v1. 354 ''; ··· 358 default = false; 359 type = types.bool; 360 description = '' 361 - Whether GRUB should be build with EFI support. 362 EFI support is only available for GRUB v2. 363 This option is ignored for GRUB v1. 364 '';
··· 348 default = false; 349 type = types.bool; 350 description = '' 351 + Whether GRUB should be built against libzfs. 352 ZFS support is only available for GRUB v2. 353 This option is ignored for GRUB v1. 354 ''; ··· 358 default = false; 359 type = types.bool; 360 description = '' 361 + Whether GRUB should be built with EFI support. 362 EFI support is only available for GRUB v2. 363 This option is ignored for GRUB v1. 364 '';
+2 -2
pkgs/applications/graphics/kipi-plugins/default.nix
··· 7 stdenv.mkDerivation rec { 8 name = "kipi-plugins-1.9.0"; 9 10 - src = fetchurl { 11 url = "mirror://sourceforge/kipi/${name}.tar.bz2"; 12 sha256 = "0k4k9v1rj7129n0s0i5pvv4rabx0prxqs6sca642fj95cxc6c96m"; 13 }; ··· 25 homepage = http://www.kipi-plugins.org; 26 inherit (kdelibs.meta) platforms; 27 maintainers = with stdenv.lib.maintainers; [ viric urkud ]; 28 - broken = true; # it should be build from digikam sources, perhaps together 29 }; 30 }
··· 7 stdenv.mkDerivation rec { 8 name = "kipi-plugins-1.9.0"; 9 10 + src = fetchurl { 11 url = "mirror://sourceforge/kipi/${name}.tar.bz2"; 12 sha256 = "0k4k9v1rj7129n0s0i5pvv4rabx0prxqs6sca642fj95cxc6c96m"; 13 }; ··· 25 homepage = http://www.kipi-plugins.org; 26 inherit (kdelibs.meta) platforms; 27 maintainers = with stdenv.lib.maintainers; [ viric urkud ]; 28 + broken = true; # it should be built from digikam sources, perhaps together 29 }; 30 }
+1 -1
pkgs/servers/firebird/default.nix
··· 11 # icu version missmatch may cause such error when selecting from a table: 12 # "Collation unicode for character set utf8 is not installed" 13 14 - # icu 3.0 can still be build easily by nix (by dropping the #elif case and 15 # make | make) 16 icu ? null 17
··· 11 # icu version missmatch may cause such error when selecting from a table: 12 # "Collation unicode for character set utf8 is not installed" 13 14 + # icu 3.0 can still be built easily by nix (by dropping the #elif case and 15 # make | make) 16 icu ? null 17
+1 -1
pkgs/servers/sql/virtuoso/7.x.nix
··· 29 meta = with stdenv.lib; { 30 description = "SQL/RDF database used by, e.g., KDE-nepomuk"; 31 homepage = http://virtuoso.openlinksw.com/dataspace/dav/wiki/Main/; 32 - #configure: The current version [...] can only be build on 64bit platforms 33 platforms = [ "x86_64-linux" "x86_64-darwin" ]; 34 maintainers = [ maintainers.urkud ]; 35 };
··· 29 meta = with stdenv.lib; { 30 description = "SQL/RDF database used by, e.g., KDE-nepomuk"; 31 homepage = http://virtuoso.openlinksw.com/dataspace/dav/wiki/Main/; 32 + #configure: The current version [...] can only be built on 64bit platforms 33 platforms = [ "x86_64-linux" "x86_64-darwin" ]; 34 maintainers = [ maintainers.urkud ]; 35 };