lol

Merge remote-tracking branch 'upstream/master' into hardened-stdenv

+2663 -512
+1
lib/maintainers.nix
··· 259 moretea = "Maarten Hoogendoorn <maarten@moretea.nl>"; 260 mornfall = "Petr Ročkai <me@mornfall.net>"; 261 MostAwesomeDude = "Corbin Simpson <cds@corbinsimpson.com>"; 262 MP2E = "Cray Elliott <MP2E@archlinux.us>"; 263 mpscholten = "Marc Scholten <marc@mpscholten.de>"; 264 msackman = "Matthew Sackman <matthew@wellquite.org>";
··· 259 moretea = "Maarten Hoogendoorn <maarten@moretea.nl>"; 260 mornfall = "Petr Ročkai <me@mornfall.net>"; 261 MostAwesomeDude = "Corbin Simpson <cds@corbinsimpson.com>"; 262 + mounium = "Katona László <muoniurn@gmail.com>"; 263 MP2E = "Cray Elliott <MP2E@archlinux.us>"; 264 mpscholten = "Marc Scholten <marc@mpscholten.de>"; 265 msackman = "Matthew Sackman <matthew@wellquite.org>";
+1
maintainers/scripts/nixpkgs-lint.nix
··· 18 meta = { 19 maintainers = [ stdenv.lib.maintainers.eelco ]; 20 description = "A utility for Nixpkgs contributors to check Nixpkgs for common errors"; 21 }; 22 }
··· 18 meta = { 19 maintainers = [ stdenv.lib.maintainers.eelco ]; 20 description = "A utility for Nixpkgs contributors to check Nixpkgs for common errors"; 21 + platforms = stdenv.lib.platforms.unix; 22 }; 23 }
+1 -1
maintainers/scripts/travis-nox-review-pr.sh
··· 29 nixpkgs-manual) 30 echo "=== Checking nixpkgs manuals" 31 32 - nix-build $TRAVIS_BUILD_DIR/pkgs/top-level/release.nix --attr manpages --show-trace 33 ;; 34 35 nixpkgs-tarball)
··· 29 nixpkgs-manual) 30 echo "=== Checking nixpkgs manuals" 31 32 + nix-build $TRAVIS_BUILD_DIR/pkgs/top-level/release.nix --attr manual --show-trace 33 ;; 34 35 nixpkgs-tarball)
+1
nixos/doc/manual/configuration/configuration.xml
··· 31 <xi:include href="taskserver.xml" /> 32 <xi:include href="acme.xml" /> 33 <xi:include href="input-methods.xml" /> 34 35 <!-- Apache; libvirtd virtualisation --> 36
··· 31 <xi:include href="taskserver.xml" /> 32 <xi:include href="acme.xml" /> 33 <xi:include href="input-methods.xml" /> 34 + <xi:include href="emacs.xml" /> 35 36 <!-- Apache; libvirtd virtualisation --> 37
+5
nixos/doc/manual/configuration/grsecurity.xml
··· 265 <sect1 xml:id="sec-grsec-issues"><title>Issues and work-arounds</title> 266 267 <itemizedlist> 268 <listitem><para>Virtualization: KVM is the preferred virtualization 269 solution. Xen, Virtualbox, and VMWare are 270 <emphasis>unsupported</emphasis> and most likely require a custom kernel.
··· 265 <sect1 xml:id="sec-grsec-issues"><title>Issues and work-arounds</title> 266 267 <itemizedlist> 268 + <listitem><para>Access to EFI runtime services is disabled by default: 269 + this plugs a potential code injection attack vector; use 270 + <option>security.grsecurity.disableEfiRuntimeServices</option> to override 271 + this behavior.</para></listitem> 272 + 273 <listitem><para>Virtualization: KVM is the preferred virtualization 274 solution. Xen, Virtualbox, and VMWare are 275 <emphasis>unsupported</emphasis> and most likely require a custom kernel.
+1
nixos/doc/manual/default.nix
··· 60 cp ${../../modules/services/misc/taskserver/doc.xml} configuration/taskserver.xml 61 cp ${../../modules/security/acme.xml} configuration/acme.xml 62 cp ${../../modules/i18n/input-method/default.xml} configuration/input-methods.xml 63 ln -s ${optionsDocBook} options-db.xml 64 echo "${version}" > version 65 '';
··· 60 cp ${../../modules/services/misc/taskserver/doc.xml} configuration/taskserver.xml 61 cp ${../../modules/security/acme.xml} configuration/acme.xml 62 cp ${../../modules/i18n/input-method/default.xml} configuration/input-methods.xml 63 + cp ${../../modules/services/editors/emacs.xml} configuration/emacs.xml 64 ln -s ${optionsDocBook} options-db.xml 65 echo "${version}" > version 66 '';
+14
nixos/modules/security/grsecurity.nix
··· 37 ''; 38 }; 39 40 }; 41 42 config = mkIf cfg.enable { ··· 44 # Allow the user to select a different package set, subject to the stated 45 # required kernel config 46 boot.kernelPackages = mkDefault pkgs.linuxPackages_grsec_nixos; 47 48 system.requiredKernelConfig = with config.lib.kernelConfig; 49 [ (isEnabled "GRKERNSEC")
··· 37 ''; 38 }; 39 40 + disableEfiRuntimeServices = mkOption { 41 + type = types.bool; 42 + example = false; 43 + default = true; 44 + description = '' 45 + Whether to disable access to EFI runtime services. Enabling EFI runtime 46 + services creates a venue for code injection attacks on the kernel and 47 + should be disabled if at all possible. Changing this option enters into 48 + effect upon reboot. 49 + ''; 50 + }; 51 + 52 }; 53 54 config = mkIf cfg.enable { ··· 56 # Allow the user to select a different package set, subject to the stated 57 # required kernel config 58 boot.kernelPackages = mkDefault pkgs.linuxPackages_grsec_nixos; 59 + 60 + boot.kernelParams = optional cfg.disableEfiRuntimeServices "noefi"; 61 62 system.requiredKernelConfig = with config.lib.kernelConfig; 63 [ (isEnabled "GRKERNSEC")
+578
nixos/modules/services/editors/emacs.xml
···
··· 1 + <chapter xmlns="http://docbook.org/ns/docbook" 2 + xmlns:xlink="http://www.w3.org/1999/xlink" 3 + xmlns:xi="http://www.w3.org/2001/XInclude" 4 + version="5.0" 5 + xml:id="module-services-emacs"> 6 + 7 + <title>Emacs</title> 8 + 9 + <!-- 10 + Documentation contributors: 11 + Damien Cassou @DamienCassou 12 + Thomas Tuegel @ttuegel 13 + Rodney Lorrimar @rvl 14 + --> 15 + 16 + <para> 17 + <link xlink:href="http://www.gnu.org/software/emacs/">Emacs</link> 18 + is an extensible, customizable, self-documenting real-time display 19 + editor — and more. At its core is an interpreter for Emacs Lisp, a 20 + dialect of the Lisp programming language with extensions to 21 + support text editing. 22 + </para> 23 + 24 + <para> 25 + Emacs runs within a graphical desktop environment using the X 26 + Window System, but works equally well on a text terminal. Under 27 + <productname>OS X</productname>, a "Mac port" edition is 28 + available, which uses Apple's native GUI frameworks. 29 + </para> 30 + 31 + <para> 32 + <productname>Nixpkgs</productname> provides a superior environment 33 + for running <application>Emacs</application>. It's simple to 34 + create custom builds by overriding the default packages. Chaotic 35 + collections of Emacs Lisp code and extensions can be brought under 36 + control using declarative package 37 + management. <productname>NixOS</productname> even provides a 38 + <command>systemd</command> user service for automatically 39 + starting the Emacs daemon. 40 + </para> 41 + 42 + <section> 43 + <title>Installing <application>Emacs</application></title> 44 + 45 + <para> 46 + Emacs can installed in the normal way for Nix (see <xref 47 + linkend="sec-package-management" />). In addition, a NixOS 48 + <emphasis>service</emphasis> can be enabled. 49 + </para> 50 + 51 + <section> 52 + <title>The Different Releases of Emacs</title> 53 + 54 + <para> 55 + <productname>Nixpkgs</productname> defines several basic Emacs 56 + packages. The following are attributes belonging to the 57 + <varname>pkgs</varname> set: 58 + 59 + <variablelist> 60 + <varlistentry> 61 + <term><varname>emacs</varname></term> 62 + <term><varname>emacs24</varname></term> 63 + <listitem> 64 + <para> 65 + The latest stable version of Emacs 24 using the <link 66 + xlink:href="http://www.gtk.org">GTK+ 2</link> widget 67 + toolkit. 68 + </para> 69 + </listitem> 70 + </varlistentry> 71 + <varlistentry> 72 + <term><varname>emacs24-nox</varname></term> 73 + <listitem> 74 + <para> 75 + Emacs 24 built without any dependency on X11 76 + libraries. 77 + </para> 78 + </listitem> 79 + </varlistentry> 80 + <varlistentry> 81 + <term><varname>emacs24Macport</varname></term> 82 + <listitem> 83 + <para> 84 + Emacs 24 with the "Mac port" patches, providing a more 85 + native look and feel under OS X. 86 + </para> 87 + </listitem> 88 + </varlistentry> 89 + <varlistentry> 90 + <term><varname>emacs25pre</varname></term> 91 + <listitem> 92 + <para> 93 + A pretest version of what will become the first 94 + version of Emacs 25. 95 + </para> 96 + </listitem> 97 + </varlistentry> 98 + </variablelist> 99 + </para> 100 + 101 + <para> 102 + If those aren't suitable, then the following imitation Emacs 103 + editors are also available in Nixpkgs: 104 + <link xlink:href="https://www.gnu.org/software/zile/">Zile</link>, 105 + <link xlink:href="http://homepage.boetes.org/software/mg/">mg</link>, 106 + <link xlink:href="http://yi-editor.github.io/">Yi</link>. 107 + </para> 108 + 109 + </section> 110 + <section> 111 + <title>Adding Packages to Emacs</title> 112 + <para> 113 + Emacs includes an entire ecosystem of functionality beyond 114 + text editing, including a project planner, mail and news 115 + reader, debugger interface, calendar, and more. 116 + </para> 117 + 118 + <para> 119 + Most extensions are gotten with the Emacs packaging system 120 + (<filename>package.el</filename>) from <link 121 + xlink:href="https://elpa.gnu.org/">Emacs Lisp Package Archive 122 + (<acronym>ELPA</acronym>)</link>, 123 + <link xlink:href="https://melpa.org/"><acronym>MELPA</acronym></link>, 124 + <link xlink:href="https://stable.melpa.org/">MELPA Stable</link>, 125 + and <link xlink:href="http://orgmode.org/elpa.html">Org ELPA</link>. 126 + Nixpkgs is regularly updated to mirror all these archives. 127 + </para> 128 + 129 + <para> 130 + Under NixOS, you can continue to use 131 + <function>package-list-packages</function> and 132 + <function>package-install</function> to install packages. You 133 + can also declare the set of Emacs packages you need using the 134 + derivations from Nixpkgs. The rest of this section discusses 135 + declarative installation of Emacs packages through nixpkgs. 136 + </para> 137 + 138 + <note> 139 + <para> 140 + This documentation describes the new Emacs packages 141 + framework in NixOS 16.03 142 + (<varname>emacsPackagesNg</varname>) which should not be 143 + confused with the previous and deprecated framework 144 + (<varname>emacs24Packages</varname>). 145 + </para> 146 + </note> 147 + 148 + <para> 149 + The first step to declare the list of packages you want in 150 + your Emacs installation is to create a dedicated 151 + derivation. This can be done in a dedicated 152 + <filename>emacs.nix</filename> file such as: 153 + 154 + <example xml:id="ex-emacsNix"> 155 + <title>Nix expression to build Emacs with packages (<filename>emacs.nix</filename>)</title> 156 + <programlisting language="nix"> 157 + /* 158 + This is a nix expression to build Emacs and some Emacs packages I like 159 + from source on any distribution where Nix is installed. This will install 160 + all the dependencies from the nixpkgs repository and build the binary files 161 + without interfering with the host distribution. 162 + 163 + To build the project, type the following from the current directory: 164 + 165 + $ nix-build emacs.nix 166 + 167 + To run the newly compiled executable: 168 + 169 + $ ./result/bin/emacs 170 + */ 171 + { pkgs ? import &lt;nixpkgs&gt; {} }: <co xml:id="ex-emacsNix-1" /> 172 + 173 + let 174 + myEmacs = pkgs.emacs; <co xml:id="ex-emacsNix-2" /> 175 + emacsWithPackages = (pkgs.emacsPackagesNgGen myEmacs).emacsWithPackages; <co xml:id="ex-emacsNix-3" /> 176 + in 177 + emacsWithPackages (epkgs: (with epkgs.melpaStablePackages; [ <co xml:id="ex-emacsNix-4" /> 178 + magit # ; Integrate git &lt;C-x g&gt; 179 + zerodark-theme # ; Nicolas' theme 180 + ]) ++ (with epkgs.melpaPackages; [ <co xml:id="ex-emacsNix-5" /> 181 + undo-tree # ; &lt;C-x u&gt; to show the undo tree 182 + zoom-frm # ; increase/decrease font size for all buffers %lt;C-x C-+&gt; 183 + ]) ++ (with epkgs.elpaPackages; [ <co xml:id="ex-emacsNix-6" /> 184 + auctex # ; LaTeX mode 185 + beacon # ; highlight my cursor when scrolling 186 + nameless # ; hide current package name everywhere in elisp code 187 + ]) ++ [ 188 + pkgs.notmuch # From main packages set <co xml:id="ex-emacsNix-7" /> 189 + ]) 190 + </programlisting> 191 + </example> 192 + 193 + <calloutlist> 194 + <callout arearefs="ex-emacsNix-1"> 195 + <para> 196 + The first non-comment line in this file 197 + (<literal>{ pkgs ? ... }</literal>) 198 + indicates that the whole file represents a function. 199 + </para> 200 + </callout> 201 + 202 + <callout arearefs="ex-emacsNix-2"> 203 + <para> 204 + The <varname>let</varname> expression below defines a 205 + <varname>myEmacs</varname> binding pointing to the current 206 + stable version of Emacs. This binding is here to separate the 207 + choice of the Emacs binary from the specification of the 208 + required packages. 209 + </para> 210 + </callout> 211 + 212 + <callout arearefs="ex-emacsNix-3"> 213 + <para> 214 + This generates an <varname>emacsWithPackages</varname> 215 + function. It takes a single argument: a function from a 216 + package set to a list of packages (the packages that will 217 + be available in Emacs). 218 + </para> 219 + </callout> 220 + 221 + <callout arearefs="ex-emacsNix-4"> 222 + <para> 223 + The rest of the file specifies the list of packages to 224 + install. In the example, two packages 225 + (<varname>magit</varname> and 226 + <varname>zerodark-theme</varname>) are taken from MELPA 227 + stable. 228 + </para> 229 + </callout> 230 + 231 + <callout arearefs="ex-emacsNix-5"> 232 + <para> 233 + Two packages (<varname>undo-tree</varname> and 234 + <varname>zoom-frm</varname>) are taken from MELPA. 235 + </para> 236 + </callout> 237 + 238 + <callout arearefs="ex-emacsNix-6"> 239 + <para>Three packages are taken from GNU ELPA.</para> 240 + </callout> 241 + 242 + <callout arearefs="ex-emacsNix-7"> 243 + <para> 244 + <varname>notmuch</varname> is taken from a nixpkgs derivation 245 + which contains an Emacs mode. 246 + </para> 247 + </callout> 248 + 249 + </calloutlist> 250 + </para> 251 + 252 + <para> 253 + The result of this configuration will be an 254 + <command>emacs</command> command which launches Emacs with all 255 + of your chosen packages in the <varname>load-path</varname>. 256 + </para> 257 + 258 + <para> 259 + You can check that it works by executing this in a terminal: 260 + 261 + <screen> 262 + $ nix-build emacs.nix 263 + $ ./result/bin/emacs -q 264 + </screen> 265 + 266 + and then typing <literal>M-x package-initialize</literal>. 267 + Check that you can use all the packages you want in this 268 + Emacs instance. For example, try switching to the zerodark 269 + theme through 270 + <literal>M-x load-theme &lt;RET&gt; zerodark &lt;RET&gt; y</literal>. 271 + </para> 272 + 273 + <tip> 274 + <para> 275 + A few popular extensions worth checking out are: auctex, 276 + company, edit-server, flycheck, helm, iedit, magit, 277 + multiple-cursors, projectile, and yasnippet. 278 + </para> 279 + </tip> 280 + 281 + <para> 282 + The list of available packages in the various ELPA 283 + repositories can be seen with the following commands: 284 + <example> 285 + <title>Querying Emacs packages</title> 286 + <programlisting><![CDATA[ 287 + nix-env -f "<nixpkgs>" -qaP -A emacsPackagesNg.elpaPackages 288 + nix-env -f "<nixpkgs>" -qaP -A emacsPackagesNg.melpaPackages 289 + nix-env -f "<nixpkgs>" -qaP -A emacsPackagesNg.melpaStablePackages 290 + nix-env -f "<nixpkgs>" -qaP -A emacsPackagesNg.orgPackages 291 + ]]></programlisting> 292 + </example> 293 + </para> 294 + 295 + <para> 296 + If you are on NixOS, you can install this particular Emacs for 297 + all users by adding it to the list of system packages 298 + (see <xref linkend="sec-declarative-package-mgmt" />). Simply 299 + modify your file <filename>configuration.nix</filename> to 300 + make it contain: 301 + <example> 302 + <title>Custom Emacs in <filename>configuration.nix</filename></title> 303 + <programlisting><![CDATA[ 304 + { 305 + environment.systemPackages = [ 306 + # [...] 307 + (import /path/to/emacs.nix { inherit pkgs; }) 308 + ]; 309 + } 310 + ]]></programlisting> 311 + </example> 312 + </para> 313 + 314 + <para> 315 + In this case, the next <command>nixos-rebuild switch</command> 316 + will take care of adding your <command>emacs</command> to the 317 + <varname>PATH</varname> environment variable 318 + (see <xref linkend="sec-changing-config" />). 319 + </para> 320 + 321 + <!-- fixme: i think the following is better done with config.nix 322 + https://nixos.org/nixpkgs/manual/#sec-modify-via-packageOverrides 323 + --> 324 + <para> 325 + If you are not on NixOS or want to install this particular 326 + Emacs only for yourself, you can do so by adding it to your 327 + <filename>~/.nixpkgs/config.nix</filename> 328 + (see <link xlink:href="http://nixos.org/nixpkgs/manual/#sec-modify-via-packageOverrides">Nixpkgs manual</link>): 329 + <example> 330 + <title>Custom Emacs in <filename>~/.nixpkgs/system.nix</filename></title> 331 + <programlisting><![CDATA[ 332 + { 333 + packageOverrides = super: let self = super.pkgs; in { 334 + myemacs = import /path/to/emacs.nix { pkgs = self; }; 335 + }; 336 + } 337 + ]]></programlisting> 338 + </example> 339 + </para> 340 + 341 + <para> 342 + In this case, the next 343 + <literal>nix-env -f '&lt;nixpkgs&gt;' -iA myemacs</literal> 344 + will take care of adding your emacs to the 345 + <varname>PATH</varname> environment variable. 346 + </para> 347 + </section> 348 + 349 + <section> 350 + <title>Advanced Emacs Configuration</title> 351 + 352 + <para> 353 + If you want, you can tweak the Emacs package itself from your 354 + <filename>emacs.nix</filename>. For example, if you want to 355 + have a GTK+3-based Emacs instead of the default GTK+2-based 356 + binary and remove the automatically generated 357 + <filename>emacs.desktop</filename> (useful is you only use 358 + <command>emacsclient</command>), you can change your file 359 + <filename>emacs.nix</filename> in this way: 360 + </para> 361 + 362 + <example xml:id="ex-emacsGtk3Nix"> 363 + <title>Custom Emacs build</title> 364 + <programlisting><![CDATA[ 365 + { pkgs ? import <nixpkgs> {} }: 366 + let 367 + myEmacs = pkgs.lib.overrideDerivation (pkgs.emacs.override { 368 + # Use gtk3 instead of the default gtk2 369 + withGTK3 = true; 370 + withGTK2 = false; 371 + }) (attrs: { 372 + # I don't want emacs.desktop file because I only use 373 + # emacsclient. 374 + postInstall = attrs.postInstall + '' 375 + rm $out/share/applications/emacs.desktop 376 + ''; 377 + }); 378 + in [...] 379 + ]]></programlisting> 380 + </example> 381 + 382 + <para> 383 + After building this file as shown in <xref linkend="ex-emacsNix" />, 384 + you will get an GTK3-based Emacs binary pre-loaded with your 385 + favorite packages. 386 + </para> 387 + </section> 388 + </section> 389 + 390 + <section> 391 + <title>Running Emacs as a Service</title> 392 + <para> 393 + <productname>NixOS</productname> provides an optional 394 + <command>systemd</command> service which launches 395 + <link xlink:href="https://www.gnu.org/software/emacs/manual/html_node/emacs/Emacs-Server.html"> 396 + Emacs daemon 397 + </link> 398 + with the user's login session. 399 + </para> 400 + 401 + <para> 402 + <emphasis>Source:</emphasis> 403 + <filename>modules/services/editors/emacs.nix</filename> 404 + </para> 405 + 406 + <section> 407 + <title>Enabling the Service</title> 408 + 409 + <para> 410 + To install and enable the <command>systemd</command> 411 + user service for Emacs daemon, add the following to your 412 + <filename>configuration.nix</filename>: 413 + 414 + <programlisting><![CDATA[ 415 + services.emacs.enable = true; 416 + services.emacs.package = import /home/cassou/.emacs.d { pkgs = pkgs; }; 417 + ]]></programlisting> 418 + </para> 419 + 420 + <para> 421 + The <varname>services.emacs.package</varname> option allows a 422 + custom derivation to be used, for example, one created by 423 + <function>emacsWithPackages</function>. 424 + </para> 425 + 426 + <para> 427 + Ensure that the Emacs server is enabled for your user's Emacs 428 + configuration, either by customizing the 429 + <varname>server-mode</varname> variable, or by adding 430 + <literal>(server-start)</literal> to 431 + <filename>~/.emacs.d/init.el</filename>. 432 + </para> 433 + 434 + <para> 435 + To start the daemon, execute the following: 436 + 437 + <screen> 438 + $ nixos-rebuild switch # to activate the new configuration.nix 439 + $ systemctl --user daemon-reload # to force systemd reload 440 + $ systemctl --user start emacs.service # to start the Emacs daemon 441 + </screen> 442 + 443 + The server should now be ready to serve Emacs clients. 444 + </para> 445 + 446 + </section> 447 + 448 + <section> 449 + <title>Starting the client</title> 450 + <para> 451 + Ensure that the emacs server is enabled, either by customizing 452 + the <varname>server-mode</varname> variable, or by adding 453 + <literal>(server-start)</literal> to 454 + <filename>~/.emacs</filename>. 455 + </para> 456 + 457 + <para> 458 + To connect to the emacs daemon, run one of the following: 459 + <programlisting><![CDATA[ 460 + emacsclient FILENAME 461 + emacsclient --create-frame # opens a new frame (window) 462 + emacsclient --create-frame --tty # opens a new frame on the current terminal 463 + ]]></programlisting> 464 + </para> 465 + </section> 466 + 467 + <section> 468 + <title>Configuring the <varname>EDITOR</varname> variable</title> 469 + <!--<title><command>emacsclient</command> as the Default Editor</title>--> 470 + 471 + <para> 472 + If <varname>services.emacs.defaultEditor</varname> is 473 + <literal>true</literal>, the <varname>EDITOR</varname> variable 474 + will be set to a wrapper script which launches 475 + <command>emacsclient</command>. 476 + </para> 477 + 478 + <para> 479 + Any setting of <varname>EDITOR</varname> in the shell config 480 + files will override 481 + <varname>services.emacs.defaultEditor</varname>. 482 + To make sure <varname>EDITOR</varname> refers to the Emacs 483 + wrapper script, remove any existing <varname>EDITOR</varname> 484 + assignment from <filename>.profile</filename>, 485 + <filename>.bashrc</filename>, <filename>.zshenv</filename> or 486 + any other shell config file. 487 + </para> 488 + 489 + <para> 490 + If you have formed certain bad habits when editing files, 491 + these can be corrected with a shell alias to the wrapper 492 + script: 493 + <programlisting>alias vi=$EDITOR</programlisting> 494 + </para> 495 + </section> 496 + 497 + <section> 498 + <title>Per-User Enabling of the Service</title> 499 + 500 + <para> 501 + In general, <command>systemd</command> user services 502 + are globally enabled by symlinks in 503 + <filename>/etc/systemd/user</filename>. In the case where 504 + Emacs daemon is not wanted for all users, it is possible to 505 + install the service but not globally enable it: 506 + 507 + <programlisting><![CDATA[ 508 + services.emacs.enable = false; 509 + services.emacs.install = true; 510 + ]]></programlisting> 511 + </para> 512 + 513 + <para> 514 + To enable the <command>systemd</command> user service for just 515 + the currently logged in user, run: 516 + 517 + <programlisting>systemctl --user enable emacs</programlisting> 518 + 519 + This will add the symlink 520 + <filename>~/.config/systemd/user/emacs.service</filename>. 521 + </para> 522 + </section> 523 + </section> 524 + 525 + <section> 526 + <title>Configuring Emacs</title> 527 + 528 + <para> 529 + The Emacs init file should be changed to load the extension 530 + packages at startup: 531 + 532 + <example> 533 + <title>Package initialization in <filename>.emacs</filename></title> 534 + <programlisting><![CDATA[ 535 + (require 'package) 536 + 537 + ;; optional. makes unpure packages archives unavailable 538 + (setq package-archives nil) 539 + 540 + (setq package-enable-at-startup nil) 541 + (package-initialize) 542 + ]]></programlisting> 543 + </example> 544 + </para> 545 + 546 + <para> 547 + After the declarative emacs package configuration has been 548 + tested, previously downloaded packages can be cleaned up by 549 + removing <filename>~/.emacs.d/elpa</filename> (do make a backup 550 + first, in case you forgot a package). 551 + </para> 552 + 553 + <!-- 554 + todo: is it worth documenting customizations for 555 + server-switch-hook, server-done-hook? 556 + --> 557 + 558 + <section> 559 + <title>A Major Mode for Nix Expressions</title> 560 + 561 + <para> 562 + Of interest may be <varname>melpaPackages.nix-mode</varname>, 563 + which provides syntax highlighting for the Nix language. This is 564 + particularly convenient if you regularly edit Nix files. 565 + </para> 566 + </section> 567 + 568 + <section> 569 + <title>Accessing man pages</title> 570 + <para> 571 + You can use <function>woman</function> to get completion of all 572 + available man pages. For example, type <literal>M-x woman 573 + &lt;RET&gt; nixos-rebuild &lt;RET&gt;.</literal> 574 + </para> 575 + </section> 576 + </section> 577 + 578 + </chapter>
+1
pkgs/applications/altcoins/dogecoin.nix
··· 43 homepage = http://www.dogecoin.com/; 44 license = licenses.mit; 45 maintainers = with maintainers; [ edwtjo offline AndersonTorres ]; 46 }; 47 }
··· 43 homepage = http://www.dogecoin.com/; 44 license = licenses.mit; 45 maintainers = with maintainers; [ edwtjo offline AndersonTorres ]; 46 + platforms = with platforms; linux; 47 }; 48 }
+1
pkgs/applications/audio/abcde/default.nix
··· 72 Ogg/Vorbis, MP3, FLAC, Ogg/Speex and/or MPP/MP+ (Musepack) 73 format, and tags them, all in one go. 74 ''; 75 }; 76 }
··· 72 Ogg/Vorbis, MP3, FLAC, Ogg/Speex and/or MPP/MP+ (Musepack) 73 format, and tags them, all in one go. 74 ''; 75 + platforms = stdenv.lib.platforms.linux; 76 }; 77 }
+1
pkgs/applications/audio/cdparanoia/default.nix
··· 31 meta = { 32 homepage = http://xiph.org/paranoia; 33 description = "A tool and library for reading digital audio from CDs"; 34 }; 35 }
··· 31 meta = { 32 homepage = http://xiph.org/paranoia; 33 description = "A tool and library for reading digital audio from CDs"; 34 + platforms = stdenv.lib.platforms.unix; 35 }; 36 }
+1
pkgs/applications/audio/cmus/default.nix
··· 116 homepage = https://cmus.github.io/; 117 license = stdenv.lib.licenses.gpl2; 118 maintainers = [ stdenv.lib.maintainers.oxij ]; 119 }; 120 }
··· 116 homepage = https://cmus.github.io/; 117 license = stdenv.lib.licenses.gpl2; 118 maintainers = [ stdenv.lib.maintainers.oxij ]; 119 + platforms = stdenv.lib.platforms.linux; 120 }; 121 }
+1
pkgs/applications/audio/dirt/default.nix
··· 25 homepage = "https://github.com/tidalcycles/Dirt"; 26 license = licenses.gpl3; 27 maintainers = with maintainers; [ anderspapitto ]; 28 }; 29 }
··· 25 homepage = "https://github.com/tidalcycles/Dirt"; 26 license = licenses.gpl3; 27 maintainers = with maintainers; [ anderspapitto ]; 28 + platforms = with platforms; linux; 29 }; 30 }
+1
pkgs/applications/audio/easytag/default.nix
··· 32 homepage = "http://projects.gnome.org/easytag/"; 33 license = stdenv.lib.licenses.gpl2Plus; 34 maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; 35 }; 36 }
··· 32 homepage = "http://projects.gnome.org/easytag/"; 33 license = stdenv.lib.licenses.gpl2Plus; 34 maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; 35 + platforms = with stdenv.lib.platforms; linux; 36 }; 37 }
+1
pkgs/applications/audio/gjay/default.nix
··· 18 homepage = http://gjay.sourceforge.net/; 19 license = licenses.gpl2; 20 maintainers = with maintainers; [ pSub ]; 21 }; 22 }
··· 18 homepage = http://gjay.sourceforge.net/; 19 license = licenses.gpl2; 20 maintainers = with maintainers; [ pSub ]; 21 + platforms = with platforms; linux; 22 }; 23 }
+1
pkgs/applications/audio/id3v2/default.nix
··· 24 homepage = http://id3v2.sourceforge.net/; 25 license = licenses.gpl2Plus; 26 maintainers = with maintainers; [ nckx ]; 27 }; 28 }
··· 24 homepage = http://id3v2.sourceforge.net/; 25 license = licenses.gpl2Plus; 26 maintainers = with maintainers; [ nckx ]; 27 + platforms = with platforms; unix; 28 }; 29 }
+1
pkgs/applications/audio/kid3/default.nix
··· 68 homepage = http://kid3.sourceforge.net/; 69 license = licenses.lgpl2Plus; 70 maintainers = [ maintainers.AndersonTorres ]; 71 }; 72 } 73 # TODO: Qt5 support
··· 68 homepage = http://kid3.sourceforge.net/; 69 license = licenses.lgpl2Plus; 70 maintainers = [ maintainers.AndersonTorres ]; 71 + platforms = platforms.linux; 72 }; 73 } 74 # TODO: Qt5 support
+1
pkgs/applications/audio/klick/default.nix
··· 23 homepage = "http://das.nasophon.de/klick/"; 24 description = "Advanced command-line metronome for JACK"; 25 license = stdenv.lib.licenses.gpl2Plus; 26 }; 27 } 28
··· 23 homepage = "http://das.nasophon.de/klick/"; 24 description = "Advanced command-line metronome for JACK"; 25 license = stdenv.lib.licenses.gpl2Plus; 26 + platforms = stdenv.lib.platforms.linux; 27 }; 28 } 29
+1
pkgs/applications/audio/mpg123/default.nix
··· 20 homepage = http://mpg123.org; 21 license = stdenv.lib.licenses.lgpl21; 22 maintainers = [ stdenv.lib.maintainers.ftrvxmtrx ]; 23 }; 24 }
··· 20 homepage = http://mpg123.org; 21 license = stdenv.lib.licenses.lgpl21; 22 maintainers = [ stdenv.lib.maintainers.ftrvxmtrx ]; 23 + platforms = stdenv.lib.platforms.unix; 24 }; 25 }
+1
pkgs/applications/audio/normalize/default.nix
··· 13 homepage = http://normalize.nongnu.org/; 14 description = "Audio file normalizer"; 15 license = licenses.gpl2; 16 }; 17 }
··· 13 homepage = http://normalize.nongnu.org/; 14 description = "Audio file normalizer"; 15 license = licenses.gpl2; 16 + platforms = platforms.unix; 17 }; 18 }
+1
pkgs/applications/audio/nova-filters/default.nix
··· 31 homepage = http://klingt.org/~tim/nova-filters/; 32 description = "LADSPA plugins based on filters of nova"; 33 license = stdenv.lib.licenses.gpl2Plus; 34 }; 35 }
··· 31 homepage = http://klingt.org/~tim/nova-filters/; 32 description = "LADSPA plugins based on filters of nova"; 33 license = stdenv.lib.licenses.gpl2Plus; 34 + platforms = stdenv.lib.platforms.linux; 35 }; 36 }
+1
pkgs/applications/audio/opus-tools/default.nix
··· 14 homepage = http://www.opus-codec.org/; 15 license = stdenv.lib.licenses.bsd2; 16 maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; 17 }; 18 }
··· 14 homepage = http://www.opus-codec.org/; 15 license = stdenv.lib.licenses.bsd2; 16 maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; 17 + platforms = with stdenv.lib.platforms; unix; 18 }; 19 }
+49
pkgs/applications/audio/puddletag/default.nix
···
··· 1 + { stdenv, lib, fetchFromGitHub, pythonPackages, makeWrapper, chromaprint }: 2 + 3 + with lib; 4 + with pythonPackages; 5 + 6 + buildPythonApplication rec { 7 + version = "1.1.1"; 8 + name = "puddletag-${version}"; 9 + namePrefix = ""; 10 + 11 + src = fetchFromGitHub { 12 + owner = "keithgg"; 13 + repo = "puddletag"; 14 + rev = "1.1.1"; 15 + sha256 = "0zmhc01qg64fb825b3kj0mb0r0d9hms30nqvhdks0qnv7ahahqrx"; 16 + }; 17 + 18 + sourceRoot = "${name}-src/source"; 19 + 20 + disabled = isPy3k; 21 + 22 + outputs = [ "out" ]; 23 + 24 + propagatedBuildInputs = [ 25 + chromaprint 26 + configobj 27 + mutagen 28 + pyparsing 29 + pyqt4 30 + ]; 31 + 32 + doCheck = false; # there are no tests 33 + dontStrip = true; # we are not generating any binaries 34 + 35 + installPhase = '' 36 + siteDir=$(toPythonPath $out) 37 + mkdir -p $siteDir 38 + PYTHONPATH=$PYTHONPATH:$siteDir 39 + ${python.interpreter} setup.py install --prefix $out 40 + ''; 41 + 42 + meta = with stdenv.lib; { 43 + homepage = https://puddletag.net; 44 + description = "An audio tag editor similar to the Windows program, Mp3tag"; 45 + license = licenses.gpl3; 46 + platforms = platforms.linux; 47 + maintainers = with maintainers; [ peterhoeg ]; 48 + }; 49 + }
+1
pkgs/applications/audio/rkrlv2/default.nix
··· 20 homepage = https://github.com/ssj71/rkrlv2; 21 license = stdenv.lib.licenses.gpl3; 22 maintainers = [ stdenv.lib.maintainers.joelmo ]; 23 }; 24 }
··· 20 homepage = https://github.com/ssj71/rkrlv2; 21 license = stdenv.lib.licenses.gpl3; 22 maintainers = [ stdenv.lib.maintainers.joelmo ]; 23 + platforms = stdenv.lib.platforms.linux; 24 }; 25 }
+4
pkgs/applications/audio/rubyripper/default.nix
··· 16 --prefix PATH : "${ruby}/bin" \ 17 --prefix PATH : "${cdparanoia}/bin" 18 ''; 19 }
··· 16 --prefix PATH : "${ruby}/bin" \ 17 --prefix PATH : "${cdparanoia}/bin" 18 ''; 19 + 20 + meta = { 21 + platforms = stdenv.lib.platforms.linux; 22 + }; 23 }
+1
pkgs/applications/backup/areca/default.nix
··· 45 description = "An Open Source personal backup solution"; 46 license = licenses.gpl2; 47 maintainers = with maintainers; [ pSub ]; 48 }; 49 }
··· 45 description = "An Open Source personal backup solution"; 46 license = licenses.gpl2; 47 maintainers = with maintainers; [ pSub ]; 48 + platforms = with platforms; linux; 49 }; 50 }
+1
pkgs/applications/editors/aewan/default.nix
··· 15 description = "Ascii-art Editor Without A Name"; 16 homepage = "http://aewan.sourceforge.net/"; 17 license = stdenv.lib.licenses.gpl2Plus; 18 }; 19 }
··· 15 description = "Ascii-art Editor Without A Name"; 16 homepage = "http://aewan.sourceforge.net/"; 17 license = stdenv.lib.licenses.gpl2Plus; 18 + platforms = stdenv.lib.platforms.unix; 19 }; 20 }
+1
pkgs/applications/editors/dhex/default.nix
··· 28 homepage = http://www.dettus.net/dhex/; 29 license = stdenv.lib.licenses.gpl2; 30 maintainers = with stdenv.lib.maintainers; [qknight]; 31 }; 32 }
··· 28 homepage = http://www.dettus.net/dhex/; 29 license = stdenv.lib.licenses.gpl2; 30 maintainers = with stdenv.lib.maintainers; [qknight]; 31 + platforms = with stdenv.lib.platforms; linux; 32 }; 33 }
+1
pkgs/applications/editors/ed/default.nix
··· 47 homepage = http://www.gnu.org/software/ed/; 48 49 maintainers = [ ]; 50 }; 51 }
··· 47 homepage = http://www.gnu.org/software/ed/; 48 49 maintainers = [ ]; 50 + platforms = stdenv.lib.platforms.unix; 51 }; 52 }
+1
pkgs/applications/editors/edbrowse/default.nix
··· 33 license = licenses.gpl1Plus; 34 homepage = http://edbrowse.org/; 35 maintainers = [ maintainers.schmitthenner maintainers.vrthra ]; 36 }; 37 }
··· 33 license = licenses.gpl1Plus; 34 homepage = http://edbrowse.org/; 35 maintainers = [ maintainers.schmitthenner maintainers.vrthra ]; 36 + platforms = platforms.linux; 37 }; 38 }
+1
pkgs/applications/editors/edit/default.nix
··· 34 homepage = http://c9x.me/edit; 35 license = licenses.publicDomain; 36 maintainers = [ maintainers.vrthra ]; 37 }; 38 } 39
··· 34 homepage = http://c9x.me/edit; 35 license = licenses.publicDomain; 36 maintainers = [ maintainers.vrthra ]; 37 + platforms = platforms.linux; 38 }; 39 } 40
+1
pkgs/applications/editors/hexedit/default.nix
··· 15 description = "View and edit files in hexadecimal or in ASCII"; 16 homepage = "http://prigaux.chez.com/hexedit.html"; 17 license = stdenv.lib.licenses.gpl2Plus; 18 }; 19 }
··· 15 description = "View and edit files in hexadecimal or in ASCII"; 16 homepage = "http://prigaux.chez.com/hexedit.html"; 17 license = stdenv.lib.licenses.gpl2Plus; 18 + platforms = stdenv.lib.platforms.unix; 19 }; 20 }
+1
pkgs/applications/editors/joe/default.nix
··· 13 description = "A full featured terminal-based screen editor"; 14 homepage = http://joe-editor.sourceforge.net; 15 license = licenses.gpl2; 16 }; 17 }
··· 13 description = "A full featured terminal-based screen editor"; 14 homepage = http://joe-editor.sourceforge.net; 15 license = licenses.gpl2; 16 + platforms = platforms.unix; 17 }; 18 }
+1
pkgs/applications/editors/ne/default.nix
··· 30 and most sparing in its resource usage. See the manual for some highlights of ne's features. 31 ''; 32 license = stdenv.lib.licenses.gpl3; 33 }; 34 }
··· 30 and most sparing in its resource usage. See the manual for some highlights of ne's features. 31 ''; 32 license = stdenv.lib.licenses.gpl3; 33 + platforms = stdenv.lib.platforms.unix; 34 }; 35 }
+1
pkgs/applications/editors/netbeans/default.nix
··· 46 meta = { 47 description = "An integrated development environment for Java, C, C++ and PHP"; 48 maintainers = [ stdenv.lib.maintainers.sander ]; 49 }; 50 }
··· 46 meta = { 47 description = "An integrated development environment for Java, C, C++ and PHP"; 48 maintainers = [ stdenv.lib.maintainers.sander ]; 49 + platforms = stdenv.lib.platforms.unix; 50 }; 51 }
+1
pkgs/applications/editors/sigil/default.nix
··· 38 license = stdenv.lib.licenses.gpl3; 39 inherit version; 40 maintainers = with stdenv.lib.maintainers; [ ramkromberg ]; 41 }; 42 }
··· 38 license = stdenv.lib.licenses.gpl3; 39 inherit version; 40 maintainers = with stdenv.lib.maintainers; [ ramkromberg ]; 41 + platforms = with stdenv.lib.platforms; linux; 42 }; 43 }
+1 -1
pkgs/applications/editors/tweak/default.nix
··· 16 description = "An efficient hex editor"; 17 homepage = "http://www.chiark.greenend.org.uk/~sgtatham/tweak"; 18 license = licenses.mit; 19 - platform = platforms.unix; 20 }; 21 }
··· 16 description = "An efficient hex editor"; 17 homepage = "http://www.chiark.greenend.org.uk/~sgtatham/tweak"; 18 license = licenses.mit; 19 + platforms = platforms.unix; 20 }; 21 }
+1
pkgs/applications/editors/vbindiff/default.nix
··· 15 description = "A terminal visual binary diff viewer"; 16 homepage = "http://www.cjmweb.net/vbindiff/"; 17 license = stdenv.lib.licenses.gpl2Plus; 18 }; 19 }
··· 15 description = "A terminal visual binary diff viewer"; 16 homepage = "http://www.cjmweb.net/vbindiff/"; 17 license = stdenv.lib.licenses.gpl2Plus; 18 + platforms = stdenv.lib.platforms.unix; 19 }; 20 }
+1
pkgs/applications/editors/vis/default.nix
··· 46 homepage = http://github.com/martanne/vis; 47 license = licenses.isc; 48 maintainers = [ maintainers.vrthra ]; 49 }; 50 }
··· 46 homepage = http://github.com/martanne/vis; 47 license = licenses.isc; 48 maintainers = [ maintainers.vrthra ]; 49 + platforms = platforms.unix; 50 }; 51 }
+1
pkgs/applications/editors/wily/default.nix
··· 22 homepage = http://wily.sourceforge.net; 23 license = licenses.artistic1; 24 maintainers = [ maintainers.vrthra ]; 25 }; 26 }
··· 22 homepage = http://wily.sourceforge.net; 23 license = licenses.artistic1; 24 maintainers = [ maintainers.vrthra ]; 25 + platforms = platforms.unix; 26 }; 27 }
+1
pkgs/applications/graphics/autopanosiftc/default.nix
··· 14 homepage = http://hugin.sourceforge.net/; 15 description = "Implementation in C of the autopano-sift algorithm for automatically stitching panoramas"; 16 license = stdenv.lib.licenses.gpl2; 17 }; 18 }
··· 14 homepage = http://hugin.sourceforge.net/; 15 description = "Implementation in C of the autopano-sift algorithm for automatically stitching panoramas"; 16 license = stdenv.lib.licenses.gpl2; 17 + platforms = stdenv.lib.platforms.linux; 18 }; 19 }
+4
pkgs/applications/graphics/batik/default.nix
··· 9 }; 10 11 buildInputs = [unzip]; 12 }
··· 9 }; 10 11 buildInputs = [unzip]; 12 + 13 + meta = { 14 + platforms = stdenv.lib.platforms.unix; 15 + }; 16 }
+1
pkgs/applications/graphics/fbida/default.nix
··· 34 homepage = https://www.kraxel.org/blog/linux/fbida/; 35 license = licenses.gpl2; 36 maintainers = with maintainers; [ pSub ]; 37 }; 38 }
··· 34 homepage = https://www.kraxel.org/blog/linux/fbida/; 35 license = licenses.gpl2; 36 maintainers = with maintainers; [ pSub ]; 37 + platforms = with platforms; linux; 38 }; 39 }
+1
pkgs/applications/graphics/fontmatrix/default.nix
··· 15 description = "Fontmatrix is a free/libre font explorer for Linux, Windows and Mac"; 16 homepage = http://fontmatrix.be/; 17 license = stdenv.lib.licenses.gpl2; 18 }; 19 }
··· 15 description = "Fontmatrix is a free/libre font explorer for Linux, Windows and Mac"; 16 homepage = http://fontmatrix.be/; 17 license = stdenv.lib.licenses.gpl2; 18 + platforms = stdenv.lib.platforms.linux; 19 }; 20 }
+1
pkgs/applications/graphics/gcolor2/default.nix
··· 27 homepage = http://gcolor2.sourceforge.net/; 28 license = stdenv.lib.licenses.gpl2Plus; 29 maintainers = with stdenv.lib.maintainers; [ notthemessiah ]; 30 }; 31 }
··· 27 homepage = http://gcolor2.sourceforge.net/; 28 license = stdenv.lib.licenses.gpl2Plus; 29 maintainers = with stdenv.lib.maintainers; [ notthemessiah ]; 30 + platforms = with stdenv.lib.platforms; unix; 31 }; 32 }
+1
pkgs/applications/graphics/gqview/default.nix
··· 20 meta = { 21 description = "A fast image viewer"; 22 homepage = http://gqview.sourceforge.net; 23 }; 24 }
··· 20 meta = { 21 description = "A fast image viewer"; 22 homepage = http://gqview.sourceforge.net; 23 + platforms = stdenv.lib.platforms.unix; 24 }; 25 }
+1
pkgs/applications/graphics/minidjvu/default.nix
··· 22 description = "Black-and-white djvu page encoder and decoder that use interpage information"; 23 license = stdenv.lib.licenses.gpl2Plus; 24 maintainers = [ stdenv.lib.maintainers.viric ]; 25 }; 26 }
··· 22 description = "Black-and-white djvu page encoder and decoder that use interpage information"; 23 license = stdenv.lib.licenses.gpl2Plus; 24 maintainers = [ stdenv.lib.maintainers.viric ]; 25 + platforms = stdenv.lib.platforms.unix; 26 }; 27 }
+1
pkgs/applications/graphics/qiv/default.nix
··· 20 description = "Quick image viewer"; 21 homepage = http://spiegl.de/qiv/; 22 inherit version; 23 }; 24 })
··· 20 description = "Quick image viewer"; 21 homepage = http://spiegl.de/qiv/; 22 inherit version; 23 + platforms = stdenv.lib.platforms.linux; 24 }; 25 })
+1
pkgs/applications/graphics/screencloud/default.nix
··· 70 description = "Client for Screencloud, an easy to use screenshot sharing tool"; 71 license = stdenv.lib.licenses.gpl2; 72 maintainers = with stdenv.lib.maintainers; [ forkk ]; 73 }; 74 }
··· 70 description = "Client for Screencloud, an easy to use screenshot sharing tool"; 71 license = stdenv.lib.licenses.gpl2; 72 maintainers = with stdenv.lib.maintainers; [ forkk ]; 73 + platforms = with stdenv.lib.platforms; linux; 74 }; 75 }
+1
pkgs/applications/graphics/xaos/default.nix
··· 24 homepage = http://xaos.sourceforge.net/; 25 description = "Fractal viewer"; 26 license = stdenv.lib.licenses.gpl2Plus; 27 }; 28 }
··· 24 homepage = http://xaos.sourceforge.net/; 25 description = "Fractal viewer"; 26 license = stdenv.lib.licenses.gpl2Plus; 27 + platforms = stdenv.lib.platforms.linux; 28 }; 29 }
+1
pkgs/applications/graphics/xournal/default.nix
··· 26 description = "Note-taking application (supposes stylus)"; 27 maintainers = [ stdenv.lib.maintainers.guibert ]; 28 license = stdenv.lib.licenses.gpl2; 29 }; 30 }
··· 26 description = "Note-taking application (supposes stylus)"; 27 maintainers = [ stdenv.lib.maintainers.guibert ]; 28 license = stdenv.lib.licenses.gpl2; 29 + platforms = stdenv.lib.platforms.linux; 30 }; 31 }
+1
pkgs/applications/graphics/zgrviewer/default.nix
··· 26 maintainers = with stdenv.lib.maintainers; [raskin]; 27 license = stdenv.lib.licenses.lgpl21Plus; 28 description = "GraphViz graph viewer/navigator"; 29 }; 30 }
··· 26 maintainers = with stdenv.lib.maintainers; [raskin]; 27 license = stdenv.lib.licenses.lgpl21Plus; 28 description = "GraphViz graph viewer/navigator"; 29 + platforms = with stdenv.lib.platforms; unix; 30 }; 31 }
+1
pkgs/applications/misc/albert/default.nix
··· 26 description = "Desktop agnostic launcher"; 27 license = stdenv.lib.licenses.gpl3Plus; 28 maintainers = [ stdenv.lib.maintainers.ericsagnes ]; 29 }; 30 }
··· 26 description = "Desktop agnostic launcher"; 27 license = stdenv.lib.licenses.gpl3Plus; 28 maintainers = [ stdenv.lib.maintainers.ericsagnes ]; 29 + platforms = stdenv.lib.platforms.linux; 30 }; 31 }
+1
pkgs/applications/misc/audio/soxr/default.nix
··· 22 description = "An audio resampling library"; 23 homepage = http://soxr.sourceforge.net; 24 license = stdenv.lib.licenses.lgpl21Plus; 25 }; 26 }
··· 22 description = "An audio resampling library"; 23 homepage = http://soxr.sourceforge.net; 24 license = stdenv.lib.licenses.lgpl21Plus; 25 + platforms = stdenv.lib.platforms.unix; 26 }; 27 }
+1
pkgs/applications/misc/cortex/default.nix
··· 26 description = "An ncurses reddit browser and monitor"; 27 license = licenses.mit; 28 maintainers = with maintainers; [ matthiasbeyer ]; 29 }; 30 31 }
··· 26 description = "An ncurses reddit browser and monitor"; 27 license = licenses.mit; 28 maintainers = with maintainers; [ matthiasbeyer ]; 29 + platforms = with platforms; unix; 30 }; 31 32 }
+1
pkgs/applications/misc/eterm/default.nix
··· 20 homepage = "http://www.eterm.org"; 21 license = licenses.bsd2; 22 maintainers = [ maintainers.AndersonTorres ]; 23 }; 24 }
··· 20 homepage = "http://www.eterm.org"; 21 license = licenses.bsd2; 22 maintainers = [ maintainers.AndersonTorres ]; 23 + platforms = platforms.linux; 24 }; 25 }
+1
pkgs/applications/misc/garmin-plugin/default.nix
··· 20 homepage = http://www.andreas-diesner.de/garminplugin; 21 license = stdenv.lib.licenses.gpl3; 22 maintainers = [ stdenv.lib.maintainers.ocharles ]; 23 }; 24 }
··· 20 homepage = http://www.andreas-diesner.de/garminplugin; 21 license = stdenv.lib.licenses.gpl3; 22 maintainers = [ stdenv.lib.maintainers.ocharles ]; 23 + platforms = stdenv.lib.platforms.linux; 24 }; 25 }
+1
pkgs/applications/misc/gksu/default.nix
··· 47 homepage = "http://www.nongnu.org/gksu/"; 48 license = stdenv.lib.licenses.gpl2; 49 maintainers = [ stdenv.lib.maintainers.romildo ]; 50 }; 51 }
··· 47 homepage = "http://www.nongnu.org/gksu/"; 48 license = stdenv.lib.licenses.gpl2; 49 maintainers = [ stdenv.lib.maintainers.romildo ]; 50 + platforms = stdenv.lib.platforms.linux; 51 }; 52 }
+1
pkgs/applications/misc/gpscorrelate/default.nix
··· 41 license = stdenv.lib.licenses.gpl2Plus; 42 43 homepage = http://freefoote.dview.net/linux_gpscorr.html; 44 }; 45 }
··· 41 license = stdenv.lib.licenses.gpl2Plus; 42 43 homepage = http://freefoote.dview.net/linux_gpscorr.html; 44 + platforms = stdenv.lib.platforms.linux; 45 }; 46 }
+1
pkgs/applications/misc/gxneur/default.nix
··· 20 21 meta = { 22 description = "GUI for XNEUR keyboard layout switcher"; 23 }; 24 }
··· 20 21 meta = { 22 description = "GUI for XNEUR keyboard layout switcher"; 23 + platforms = stdenv.lib.platforms.linux; 24 }; 25 }
+1
pkgs/applications/misc/j4-dmenu-desktop/default.nix
··· 25 homepage = "https://github.com/enkore/j4-dmenu-desktop"; 26 license = licenses.gpl3; 27 maintainer = with maintainers; [ ericsagnes ]; 28 }; 29 }
··· 25 homepage = "https://github.com/enkore/j4-dmenu-desktop"; 26 license = licenses.gpl3; 27 maintainer = with maintainers; [ ericsagnes ]; 28 + platforms = with platforms; unix; 29 }; 30 }
+1
pkgs/applications/misc/jigdo/default.nix
··· 22 description = "Download utility that can fetch files from several sources simultaneously"; 23 homepage = http://atterer.net/jigdo/; 24 license = stdenv.lib.licenses.gpl2; 25 }; 26 }
··· 22 description = "Download utility that can fetch files from several sources simultaneously"; 23 homepage = http://atterer.net/jigdo/; 24 license = stdenv.lib.licenses.gpl2; 25 + platforms = stdenv.lib.platforms.unix; 26 }; 27 }
+1
pkgs/applications/misc/jp2a/default.nix
··· 17 homepage = https://csl.name/jp2a/; 18 description = "A small utility that converts JPG images to ASCII"; 19 license = licenses.gpl2; 20 }; 21 }
··· 17 homepage = https://csl.name/jp2a/; 18 description = "A small utility that converts JPG images to ASCII"; 19 license = licenses.gpl2; 20 + platforms = platforms.unix; 21 }; 22 }
+1
pkgs/applications/misc/mdp/default.nix
··· 20 description = "A command-line based markdown presentation tool"; 21 maintainers = with maintainers; [ matthiasbeyer vrthra ]; 22 license = licenses.gpl3; 23 }; 24 }
··· 20 description = "A command-line based markdown presentation tool"; 21 maintainers = with maintainers; [ matthiasbeyer vrthra ]; 22 license = licenses.gpl3; 23 + platforms = with platforms; unix; 24 }; 25 }
+1
pkgs/applications/misc/mrxvt/default.nix
··· 35 "; 36 homepage = http://sourceforge.net/projects/materm; 37 license = "GPL"; 38 }; 39 }
··· 35 "; 36 homepage = http://sourceforge.net/projects/materm; 37 license = "GPL"; 38 + platforms = stdenv.lib.platforms.linux; 39 }; 40 }
+1
pkgs/applications/misc/nanoblogger/default.nix
··· 25 description = "Small weblog engine written in Bash for the command line"; 26 homepage = http://nanoblogger.sourceforge.net/; 27 license = stdenv.lib.licenses.gpl2; 28 }; 29 }
··· 25 description = "Small weblog engine written in Bash for the command line"; 26 homepage = http://nanoblogger.sourceforge.net/; 27 license = stdenv.lib.licenses.gpl2; 28 + platforms = stdenv.lib.platforms.unix; 29 }; 30 }
+1
pkgs/applications/misc/pinfo/default.nix
··· 18 description = "A viewer for info files"; 19 homepage = https://alioth.debian.org/projects/pinfo/; 20 license = licenses.gpl2Plus; 21 }; 22 } 23
··· 18 description = "A viewer for info files"; 19 homepage = https://alioth.debian.org/projects/pinfo/; 20 license = licenses.gpl2Plus; 21 + platforms = platforms.unix; 22 }; 23 } 24
+1
pkgs/applications/misc/pstree/default.nix
··· 20 description = "Show the set of running processes as a tree"; 21 license = "GPL"; 22 maintainers = [ stdenv.lib.maintainers.mornfall ]; 23 }; 24 }
··· 20 description = "Show the set of running processes as a tree"; 21 license = "GPL"; 22 maintainers = [ stdenv.lib.maintainers.mornfall ]; 23 + platforms = stdenv.lib.platforms.unix; 24 }; 25 }
+1
pkgs/applications/misc/quicksynergy/default.nix
··· 31 homepage = https://code.google.com/p/quicksynergy/; 32 license = stdenv.lib.licenses.gpl2; 33 maintainers = [ stdenv.lib.maintainers.spinus ]; 34 }; 35 }
··· 31 homepage = https://code.google.com/p/quicksynergy/; 32 license = stdenv.lib.licenses.gpl2; 33 maintainers = [ stdenv.lib.maintainers.spinus ]; 34 + platforms = stdenv.lib.platforms.linux; 35 }; 36 }
+1
pkgs/applications/misc/rofi/default.nix
··· 27 homepage = https://davedavenport.github.io/rofi; 28 license = licenses.mit; 29 maintainers = with maintainers; [ mbakke garbas ]; 30 }; 31 }
··· 27 homepage = https://davedavenport.github.io/rofi; 28 license = licenses.mit; 29 maintainers = with maintainers; [ mbakke garbas ]; 30 + platforms = with platforms; unix; 31 }; 32 }
+1
pkgs/applications/misc/rxvt_unicode-plugins/urxvt-font-size/default.nix
··· 25 homepage = "https://github.com/majutsushi/urxvt-font-size"; 26 license = licenses.mit; 27 maintainers = with maintainers; [ cstrahan ]; 28 }; 29 }
··· 25 homepage = "https://github.com/majutsushi/urxvt-font-size"; 26 license = licenses.mit; 27 maintainers = with maintainers; [ cstrahan ]; 28 + platforms = with platforms; unix; 29 }; 30 }
+1
pkgs/applications/misc/rxvt_unicode-plugins/urxvt-perl/default.nix
··· 24 homepage = "https://github.com/effigies/urxvt-perl"; 25 license = licenses.gpl3; 26 maintainers = with maintainers; [ cstrahan ]; 27 }; 28 }
··· 24 homepage = "https://github.com/effigies/urxvt-perl"; 25 license = licenses.gpl3; 26 maintainers = with maintainers; [ cstrahan ]; 27 + platforms = with platforms; unix; 28 }; 29 }
+1
pkgs/applications/misc/rxvt_unicode-plugins/urxvt-perls/default.nix
··· 24 homepage = "https://github.com/muennich/urxvt-perls"; 25 license = licenses.gpl2; 26 maintainers = with maintainers; [ abbradar ]; 27 }; 28 }
··· 24 homepage = "https://github.com/muennich/urxvt-perls"; 25 license = licenses.gpl2; 26 maintainers = with maintainers; [ abbradar ]; 27 + platforms = with platforms; unix; 28 }; 29 }
+1
pkgs/applications/misc/rxvt_unicode-plugins/urxvt-tabbedex/default.nix
··· 17 description = "Tabbed plugin for rxvt-unicode with many enhancements (mina86's fork)"; 18 homepage = "https://github.com/mina86/urxvt-tabbedex"; 19 maintainers = with maintainers; [ abbradar ]; 20 }; 21 }
··· 17 description = "Tabbed plugin for rxvt-unicode with many enhancements (mina86's fork)"; 18 homepage = "https://github.com/mina86/urxvt-tabbedex"; 19 maintainers = with maintainers; [ abbradar ]; 20 + platforms = with platforms; unix; 21 }; 22 }
+1
pkgs/applications/misc/rxvt_unicode-plugins/urxvt-theme-switch/default.nix
··· 23 homepage = ""; 24 license = "CCBYNC"; 25 maintainers = with maintainers; [ garbas ]; 26 }; 27 }
··· 23 homepage = ""; 24 license = "CCBYNC"; 25 maintainers = with maintainers; [ garbas ]; 26 + platforms = with platforms; unix; 27 }; 28 }
+1
pkgs/applications/misc/rxvt_unicode/default.nix
··· 53 description = "A clone of the well-known terminal emulator rxvt"; 54 homepage = "http://software.schmorp.de/pkg/rxvt-unicode.html"; 55 maintainers = [ stdenv.lib.maintainers.mornfall ]; 56 }; 57 })
··· 53 description = "A clone of the well-known terminal emulator rxvt"; 54 homepage = "http://software.schmorp.de/pkg/rxvt-unicode.html"; 55 maintainers = [ stdenv.lib.maintainers.mornfall ]; 56 + platforms = stdenv.lib.platforms.unix; 57 }; 58 })
+1
pkgs/applications/misc/stag/default.nix
··· 20 description = "Terminal streaming bar graph passed through stdin"; 21 license = stdenv.lib.licenses.bsdOriginal; 22 maintainers = [ stdenv.lib.maintainers.matthiasbeyer ]; 23 }; 24 }
··· 20 description = "Terminal streaming bar graph passed through stdin"; 21 license = stdenv.lib.licenses.bsdOriginal; 22 maintainers = [ stdenv.lib.maintainers.matthiasbeyer ]; 23 + platforms = stdenv.lib.platforms.unix; 24 }; 25 }
+1
pkgs/applications/misc/tangogps/default.nix
··· 39 #homepage = http://www.tangogps.org/; # no longer valid, I couldn't find any other 40 41 license = stdenv.lib.licenses.gpl2Plus; 42 }; 43 }
··· 39 #homepage = http://www.tangogps.org/; # no longer valid, I couldn't find any other 40 41 license = stdenv.lib.licenses.gpl2Plus; 42 + platforms = stdenv.lib.platforms.unix; 43 }; 44 }
+1
pkgs/applications/misc/thinking-rock/default.nix
··· 36 description = "Task management system"; 37 homepage = http://www.thinkingrock.com.au/; 38 license = "CDDL"; # Common Development and Distribution License 39 }; 40 }
··· 36 description = "Task management system"; 37 homepage = http://www.thinkingrock.com.au/; 38 license = "CDDL"; # Common Development and Distribution License 39 + platforms = stdenv.lib.platforms.unix; 40 }; 41 }
+2 -2
pkgs/applications/misc/truecrypt/default.nix
··· 49 builder = ./builder.sh; 50 51 src = fetchurl { 52 - url = http://fossies.org/unix/misc/TrueCrypt-7.1a-Source.tar.gz; 53 - sha1 = "d43e0dbe05c04e316447d87413c4f74c68f5de24"; 54 }; 55 56 pkcs11h = fetchurl {
··· 49 builder = ./builder.sh; 50 51 src = fetchurl { 52 + url = https://fossies.org/linux/misc/old/TrueCrypt-7.1a-Source.tar.gz; 53 + sha256 = "e6214e911d0bbededba274a2f8f8d7b3f6f6951e20f1c3a598fc7a23af81c8dc"; 54 }; 55 56 pkcs11h = fetchurl {
+1
pkgs/applications/misc/viking/default.nix
··· 43 homepage = http://viking.sourceforge.net/; 44 license = licenses.gpl2Plus; 45 maintainers = with maintainers; [ pSub ]; 46 }; 47 }
··· 43 homepage = http://viking.sourceforge.net/; 44 license = licenses.gpl2Plus; 45 maintainers = with maintainers; [ pSub ]; 46 + platforms = with platforms; linux; 47 }; 48 }
+4 -3
pkgs/applications/misc/wmname/default.nix
··· 13 preConfigure = [ ''sed -i "s@PREFIX = /usr/local@PREFIX = $out@g" config.mk'' ]; 14 15 meta = { 16 - description = "Prints or set the window manager name property of the root window"; 17 - homepage = "http://tools.suckless.org/wmname"; 18 - license = stdenv.lib.licenses.mit; 19 }; 20 }
··· 13 preConfigure = [ ''sed -i "s@PREFIX = /usr/local@PREFIX = $out@g" config.mk'' ]; 14 15 meta = { 16 + description = "Prints or set the window manager name property of the root window"; 17 + homepage = "http://tools.suckless.org/wmname"; 18 + license = stdenv.lib.licenses.mit; 19 + platforms = stdenv.lib.platforms.unix; 20 }; 21 }
+4
pkgs/applications/misc/xautoclick/default.nix
··· 21 ln -s ${qt4}/bin/moc .bin/moc-qt4 22 addToSearchPath PATH .bin 23 ''; 24 }
··· 21 ln -s ${qt4}/bin/moc .bin/moc-qt4 22 addToSearchPath PATH .bin 23 ''; 24 + 25 + meta = { 26 + platforms = stdenv.lib.platforms.linux; 27 + }; 28 }
+1
pkgs/applications/misc/xchm/default.nix
··· 16 meta = { 17 description = "A viewer for Microsoft HTML Help files"; 18 homepage = http://xchm.sourceforge.net; 19 }; 20 }
··· 16 meta = { 17 description = "A viewer for Microsoft HTML Help files"; 18 homepage = http://xchm.sourceforge.net; 19 + platforms = stdenv.lib.platforms.linux; 20 }; 21 }
+12 -11
pkgs/applications/misc/xcruiser/default.nix
··· 16 makeFlagsArray=( BINDIR=$out/bin XAPPLOADDIR=$out/etc/X11/app-defaults) 17 ''; 18 19 - meta = with stdenv.lib; 20 - { description = "Filesystem visualization utility"; 21 - longDescription = '' 22 - XCruiser, formerly known as XCruise, is a filesystem visualization utility. 23 - It constructs a virtually 3-D formed universe from a directory 24 - tree and allows you to "cruise" within a visualized filesystem. 25 - ''; 26 - homepage = http://xcruiser.sourceforge.net/; 27 - license = licenses.gpl2; 28 - maintainers = with maintainers; [ ehmry ]; 29 - }; 30 }
··· 16 makeFlagsArray=( BINDIR=$out/bin XAPPLOADDIR=$out/etc/X11/app-defaults) 17 ''; 18 19 + meta = with stdenv.lib; { 20 + description = "Filesystem visualization utility"; 21 + longDescription = '' 22 + XCruiser, formerly known as XCruise, is a filesystem visualization utility. 23 + It constructs a virtually 3-D formed universe from a directory 24 + tree and allows you to "cruise" within a visualized filesystem. 25 + ''; 26 + homepage = http://xcruiser.sourceforge.net/; 27 + license = licenses.gpl2; 28 + maintainers = with maintainers; [ ehmry ]; 29 + platforms = with platforms; linux; 30 + }; 31 }
+1
pkgs/applications/misc/xkblayout-state/default.nix
··· 22 homepage = https://github.com/nonpop/xkblayout-state; 23 license = licenses.gpl2; 24 maintainers = [ maintainers.jagajaga ]; 25 }; 26 }
··· 22 homepage = https://github.com/nonpop/xkblayout-state; 23 license = licenses.gpl2; 24 maintainers = [ maintainers.jagajaga ]; 25 + platforms = platforms.linux; 26 }; 27 }
+4 -1
pkgs/applications/misc/xmove/default.nix
··· 11 installPhase = "cd xmove; make install install.man MANDIR=\${out}/man/man1 BINDIR=\${out}/bin; cd .. ; cd xmovectrl ; make install install.man MANDIR=\${out}/man/man1 BINDIR=\${out}/bin; cd .."; 12 13 buildInputs = [libX11 libXi imake xauth libXau]; 14 } 15 -
··· 11 installPhase = "cd xmove; make install install.man MANDIR=\${out}/man/man1 BINDIR=\${out}/bin; cd .. ; cd xmovectrl ; make install install.man MANDIR=\${out}/man/man1 BINDIR=\${out}/bin; cd .."; 12 13 buildInputs = [libX11 libXi imake xauth libXau]; 14 + 15 + meta = { 16 + platforms = stdenv.lib.platforms.linux; 17 + }; 18 }
+1
pkgs/applications/misc/xneur/0.8.nix
··· 23 24 meta = { 25 description = "Utility for switching between keyboard layouts"; 26 }; 27 28 }
··· 23 24 meta = { 25 description = "Utility for switching between keyboard layouts"; 26 + platforms = stdenv.lib.platforms.linux; 27 }; 28 29 }
+3
pkgs/applications/misc/xpdf/libxpdf.nix
··· 46 cp -v xpdf/*.h $out/include 47 ''; 48 49 }
··· 46 cp -v xpdf/*.h $out/include 47 ''; 48 49 + meta = { 50 + platforms = stdenv.lib.platforms.unix; 51 + }; 52 }
+1
pkgs/applications/misc/ykpers/default.nix
··· 19 description = "YubiKey Personalization cross-platform library and tool"; 20 license = "bsd"; 21 maintainers = [ stdenv.lib.maintainers.calrama ]; 22 }; 23 }
··· 19 description = "YubiKey Personalization cross-platform library and tool"; 20 license = "bsd"; 21 maintainers = [ stdenv.lib.maintainers.calrama ]; 22 + platforms = stdenv.lib.platforms.linux; 23 }; 24 }
+1
pkgs/applications/networking/browsers/elinks/default.nix
··· 44 description = "Full-featured text-mode web browser"; 45 homepage = http://elinks.or.cz; 46 license = stdenv.lib.licenses.gpl2; 47 }; 48 }
··· 44 description = "Full-featured text-mode web browser"; 45 homepage = http://elinks.or.cz; 46 license = stdenv.lib.licenses.gpl2; 47 + platforms = stdenv.lib.platforms.linux; 48 }; 49 }
+183 -183
pkgs/applications/networking/browsers/firefox-bin/sources.nix
··· 4 # ruby generate_sources.rb 46.0.1 > sources.nix 5 6 { 7 - version = "47.0.1"; 8 sources = [ 9 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ach/firefox-47.0.1.tar.bz2"; locale = "ach"; arch = "linux-i686"; sha512 = "a5391e45d1e59a7c14d8d421286033e3e760bf2b4afddfec3d1767b2ebc957b053c39f17f8185a6c9ca2542c76f6c9612d95d474c01bd5ecc62e5d4f4e43e8df"; } 10 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ach/firefox-47.0.1.tar.bz2"; locale = "ach"; arch = "linux-x86_64"; sha512 = "48681328033b694adfc6149bd965a3dff90ef014db6f65641ddd3d79ba7901604623735555bad024dc2425f226c65e332a0875d6b18fe1c06b18a1e407b70294"; } 11 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/af/firefox-47.0.1.tar.bz2"; locale = "af"; arch = "linux-i686"; sha512 = "7757ba99ce9991f67a45d9a19615a93c0a1bf0e35d35c5fe653f04d47c068054c8d91327641a48cd20fb9531cd1e842066c0e6f2dd8b23bff216a9fc727ec84d"; } 12 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/af/firefox-47.0.1.tar.bz2"; locale = "af"; arch = "linux-x86_64"; sha512 = "7e3d70da29aeb5fc81f5e6dc52a4b8f831813f8c025b1a105df631cc5b675905c82dae842459ad30c5257b74bd5654e9aec5dcfcdee93eb42443c45cda81138e"; } 13 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/an/firefox-47.0.1.tar.bz2"; locale = "an"; arch = "linux-i686"; sha512 = "1051e1e3a6c25ba6b3aa4ce5adfdc60bcb3c612f3facd5edb702385ea8c0837cc53e95b064a424e0c055a56a11f3a54a7ba37e2ef35045c8cbb834aaec0f6327"; } 14 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/an/firefox-47.0.1.tar.bz2"; locale = "an"; arch = "linux-x86_64"; sha512 = "27fb75ce402c0d47f8542d3d6d6992587e6ea0caaba2249e763f0f9c4f1d233b37a4b87ebb7e730d16704c7d2abab690660e409e721850875fc09deb0c433252"; } 15 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ar/firefox-47.0.1.tar.bz2"; locale = "ar"; arch = "linux-i686"; sha512 = "296e23fff265bcc08ec0f81608d50428181163d216fd896c80a1a8c31e95f243112aeedf3bbd96b1efbaa1d6d576a9bfc75e5fe8df434cbb74bb9576f7d90a83"; } 16 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ar/firefox-47.0.1.tar.bz2"; locale = "ar"; arch = "linux-x86_64"; sha512 = "15f0e7cbf5a98ffa9d2d7befcb11938b76194dff29b1d93ddcbb8f5c655ef33659534874a72aea18f98af06e5fa4392aee5412582ef43292d70603dff2c42c60"; } 17 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/as/firefox-47.0.1.tar.bz2"; locale = "as"; arch = "linux-i686"; sha512 = "67883c8cb7ffb6c05288b316b2aa5bc3274372dd82ab4c771fcf1e5a968e550d12c89027440704d8479a906beeef24a18ca72ad243628a5ece45918ed990c793"; } 18 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/as/firefox-47.0.1.tar.bz2"; locale = "as"; arch = "linux-x86_64"; sha512 = "f7718b0dc9bcbfd109591f87263d7791dcd7612b0312d0bf93e68b1f2014d3732dc6740c57a8e64dfc1af7946da14dde617945e38842eb19cfe39376cb12ad44"; } 19 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ast/firefox-47.0.1.tar.bz2"; locale = "ast"; arch = "linux-i686"; sha512 = "f29b883932752bfa947c48f7c1ff6084b1cf215ea84cf63beaea808702b0b90f50e85aa4cefa4d2c1234b0d366c8f6e3d8fdf7a0f92d432cba790adab6d24174"; } 20 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ast/firefox-47.0.1.tar.bz2"; locale = "ast"; arch = "linux-x86_64"; sha512 = "8b656c6b08640c125b94f90e1dc8259c90af2e764cee73b02b9dc3c0246b3195906d9208bc2a6b3ca31091d8cdfca8338fa6c489b7caa5685a23133e98847a39"; } 21 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/az/firefox-47.0.1.tar.bz2"; locale = "az"; arch = "linux-i686"; sha512 = "5ee1247e37964274bbea8021c8e4e5116fedca95712fbd91d709c5c580bd1618c6319cae73278b2f0ba82031e94bd3fb382d2b4dcfc9a5d7ad47ecd80f4fca43"; } 22 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/az/firefox-47.0.1.tar.bz2"; locale = "az"; arch = "linux-x86_64"; sha512 = "c369046c29dd0dfcf40e69e1f5b5a63423833a376d2b143d3fbf2ee1e23dedb3baf24843ba1178bda94b86f357724898a147d4adfac1e469cbf44166d7ffd16c"; } 23 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/be/firefox-47.0.1.tar.bz2"; locale = "be"; arch = "linux-i686"; sha512 = "f8a1ab05b8d25a7a30e755a551f0851a308ba0720180685f6946a510363988717f8274ac2c8ef826c60232a62c394b86829d289e7d74e24b7656b55238129b15"; } 24 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/be/firefox-47.0.1.tar.bz2"; locale = "be"; arch = "linux-x86_64"; sha512 = "df05271371de5fa25ec11164eaac0b253bc892749d421a6ca730dfeceb4ef89492c42ce83a87eccbe91cb03ab001bf0a1d9a20a7296b69841cab8c6b5d2acc36"; } 25 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/bg/firefox-47.0.1.tar.bz2"; locale = "bg"; arch = "linux-i686"; sha512 = "80644b86f9296b708e74843a51f81d368e3508f0f2f74de1a998d30a15f6e3af08ffd70dcc5c79adb76c03be9ff4713fc8403b8433cbc33ca3493941c4fb2fe0"; } 26 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/bg/firefox-47.0.1.tar.bz2"; locale = "bg"; arch = "linux-x86_64"; sha512 = "0e6cdc5b3cc706031c95a550b0c800c9e8e2d7bf241010c22f0872eca4bab018a5f0d4a94abb4f8291c279476700f2101a69ac0c57ae79994fba38b88b00fddb"; } 27 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/bn-BD/firefox-47.0.1.tar.bz2"; locale = "bn-BD"; arch = "linux-i686"; sha512 = "4c697f1dcd68634e2ab712d4f2415e57cf8be0017fff3602223d8af19a1f3a5c973489d13951baaab95924fad42212a485fdff622d2b559be36e246c8a847b67"; } 28 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/bn-BD/firefox-47.0.1.tar.bz2"; locale = "bn-BD"; arch = "linux-x86_64"; sha512 = "1931035a9d92dd9246a00b32443e282dc405096407a4feff7856125b7ee156840114c9be0dd58a020c250fa54c4ccb22052d2be291eeec9b5f76303fdf6c4cc5"; } 29 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/bn-IN/firefox-47.0.1.tar.bz2"; locale = "bn-IN"; arch = "linux-i686"; sha512 = "fbab6f7e4205c803a50990624d58aa80cfd3aa76fed02cbf9ea390f4ecdcc1a97bda9b51791cec49f2a7e1010109d5f81a1c9b6ac224f1f70df49407df5f7386"; } 30 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/bn-IN/firefox-47.0.1.tar.bz2"; locale = "bn-IN"; arch = "linux-x86_64"; sha512 = "c705ec8356796060c6782261086011bc0bf3ac9f08bc821ce2305c9aac11c522abb802a9d9ab7dcb53b0d38468bb6e667d45b187355d769acb43a8b252c4f400"; } 31 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/br/firefox-47.0.1.tar.bz2"; locale = "br"; arch = "linux-i686"; sha512 = "c58cd77139a0ae7f3bb8f6f25c40856aca18a831c8f5d6f5d59a45ec615420bd55205093fb66a77591835b0d9493f774b1801a168b9c071086d510a1446cc914"; } 32 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/br/firefox-47.0.1.tar.bz2"; locale = "br"; arch = "linux-x86_64"; sha512 = "b6bde26d478eac081007ef43a6d588f70dc4d54afc423b019468dc91bfcb117d3b4989c4cbb4cf77a1a11847a58ec74fbf822b6e6f0ef86fdb0065c301294850"; } 33 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/bs/firefox-47.0.1.tar.bz2"; locale = "bs"; arch = "linux-i686"; sha512 = "16ee40d079996f42be77167b73645d389045648c9d36b76e34d0398c7b5b6dee54712d109f93d054236ac7076fc3edb06ee82acae40ad22825a23d92d0e2c636"; } 34 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/bs/firefox-47.0.1.tar.bz2"; locale = "bs"; arch = "linux-x86_64"; sha512 = "ef674f409df5c32fe4584f9de65cc6558d6b3ec78d8a83f5cec829bc1ae09f30399567915e32584334704d12264c2592fecc9e4952beabc8b0d4eb49a7186854"; } 35 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ca/firefox-47.0.1.tar.bz2"; locale = "ca"; arch = "linux-i686"; sha512 = "fe522bd836c82cb68bb21ad1c7f36bd9a7af1642abf7c035e2d0999b4cc07c58124e4d8de81344598036159102ee12f22c12e44a8a087e54d6c661c3f453b63e"; } 36 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ca/firefox-47.0.1.tar.bz2"; locale = "ca"; arch = "linux-x86_64"; sha512 = "b618da984d35fbde3819d101c103d8d9a5a4de98f0e254c67e894656019ebb6adc56e14a57410a61430d9aa9c1e0a01339b39a5272164af372544f27329a1644"; } 37 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/cak/firefox-47.0.1.tar.bz2"; locale = "cak"; arch = "linux-i686"; sha512 = "82659aa2fbd091224aef6800b3df1d2e5141b6a295918e4fc4ea09b671184f62c670e3dedd7040b2f167581b0c8a0e8799d861256b273b01b2455d0937722273"; } 38 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/cak/firefox-47.0.1.tar.bz2"; locale = "cak"; arch = "linux-x86_64"; sha512 = "a507cff511c6337f805a27c0f73548342d2fb2cffa683874d66b054b844b17c354cc6da5c3d15618006c2279099b0cd9172b17d9d4b21a3863b5e395db686b22"; } 39 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/cs/firefox-47.0.1.tar.bz2"; locale = "cs"; arch = "linux-i686"; sha512 = "9af91acffc2beeb53280a6cbd21656a91a686c03342fad90dd91314c49535acef1a8abac8fe54bcfc250ca8b8f07e3550c890094f3bcee6baece983cec68bd8a"; } 40 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/cs/firefox-47.0.1.tar.bz2"; locale = "cs"; arch = "linux-x86_64"; sha512 = "c8bea48dc11c021fff9df5ee1a67a6b6e9193ffb2a07e17014d7448254d8a8f4d1512f862ea73bf84dc15b40edbba3fd94cd3d2d18872255bbfc7fa9a7b8ec29"; } 41 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/cy/firefox-47.0.1.tar.bz2"; locale = "cy"; arch = "linux-i686"; sha512 = "7cc062c3b9b4bbfd0b1f7247f06505ae99458514b607d4d9062836085798bab7ade6c4d1c8903b1b961243c6fb6adb4c4f94780f1194f745cf62d786e2c4f5c6"; } 42 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/cy/firefox-47.0.1.tar.bz2"; locale = "cy"; arch = "linux-x86_64"; sha512 = "abafa600b941e17f8aea0e778a937f5fb34cbc8803c93e59febc5d9fde6ad3347ba0bc7aa07ab57a61f6b9d6b11d582b987100364aa8401bca539dc6e14584e3"; } 43 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/da/firefox-47.0.1.tar.bz2"; locale = "da"; arch = "linux-i686"; sha512 = "d4a9141779f52b78a51b9682b6b44e5ccffdecf5582358ab8a02efe133d9a52023e03c238e106a79e41a8aeaabcc58e0757c1af66837768e7bf4732f26182915"; } 44 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/da/firefox-47.0.1.tar.bz2"; locale = "da"; arch = "linux-x86_64"; sha512 = "48f0c48aa273cec9830bf806330c7a630185262838007628acad904a45b3186450a8973938c36db636bdef9042c78ce94a4a456e1682ef561abaabab6ac20863"; } 45 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/de/firefox-47.0.1.tar.bz2"; locale = "de"; arch = "linux-i686"; sha512 = "01675b3a8ecfa10da1d101cba36295b226b130e1cdb2c760541cd76c9b21436ae84ca7228e063402b1ca2eb59acadcac7720c9dd47db8b406675fb273af206c6"; } 46 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/de/firefox-47.0.1.tar.bz2"; locale = "de"; arch = "linux-x86_64"; sha512 = "6a7ef802a8109f58504b2accb9ef0ee38986f6c8980e0831c30b470f2ee768169557cdbde1a58d7c72996b27596e553185ded476cecdd7114b75d82428b7846e"; } 47 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/dsb/firefox-47.0.1.tar.bz2"; locale = "dsb"; arch = "linux-i686"; sha512 = "55528fca4d276b2b0430949686845e3d7d88975129c9a9846408f758b4f9c8f154425db891e5c1930197e36137d6c15ba29de90dad624bad23090015849d0ab5"; } 48 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/dsb/firefox-47.0.1.tar.bz2"; locale = "dsb"; arch = "linux-x86_64"; sha512 = "f21c14a57f6f973be824340fcd417ce03765d5826114462f62adbd933661bccbfbe90b66935083619c62d48401c511830574ccc373ca2110093b06fad59734ff"; } 49 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/el/firefox-47.0.1.tar.bz2"; locale = "el"; arch = "linux-i686"; sha512 = "ac5a808db1ba68286a7199eef33794f7aeeafa26e97a20738fb21be479462bcaeb1e8a7995720d5c7dcaadd0cebe91bb2a3e019873d0cf74f42838f7d5c1a427"; } 50 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/el/firefox-47.0.1.tar.bz2"; locale = "el"; arch = "linux-x86_64"; sha512 = "c02e6587d99fc3ca66debe854c778a8b3dbf9b514e6ed74fa15e3035a54643b2bc324ff59f1705c6bd392c37ad1996f80dbabbb57df10aff954ed0ff3f5b01d5"; } 51 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/en-GB/firefox-47.0.1.tar.bz2"; locale = "en-GB"; arch = "linux-i686"; sha512 = "c458c70db0408d627a904781adc9af18011f243689f4c5a606c8f1508b4e9417a8df499673c4ba56d32ea77d0f79ab85ff88852f7c518e7fd124e5970615b2f9"; } 52 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/en-GB/firefox-47.0.1.tar.bz2"; locale = "en-GB"; arch = "linux-x86_64"; sha512 = "28ccaebc4f7613d7ea8c3b47504923f2d59bdf4afd6e386a67dcb6b6923a9374c1c783e4f904da0b6e0f716ec87a046fc12f3781b732389d1d680745d6955c58"; } 53 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/en-US/firefox-47.0.1.tar.bz2"; locale = "en-US"; arch = "linux-i686"; sha512 = "e1ea34bd0829656c04c471b66d2013fc07cbd5cf40b47bf3a932326cca71f9a502c52d1d5e6dd902d274d307079475b0e75d7ff552fcb2fadf31b2883efba79e"; } 54 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/en-US/firefox-47.0.1.tar.bz2"; locale = "en-US"; arch = "linux-x86_64"; sha512 = "a56b2ad26df424f008d96968a4e6a10406694b33f42d962f19dff1a0bcdf261bca5dd0e5c6f3af32d892c3268da5ebee8ce182090f04f8480d37d232ccd23b9f"; } 55 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/en-ZA/firefox-47.0.1.tar.bz2"; locale = "en-ZA"; arch = "linux-i686"; sha512 = "d5efc3d4e624f34c81df068f4d6c184cb8a63ad0667695e9ce7099e069b23715eb77cf2004adee41bf355452179959e5ef7450f167f87be70339abb4cf70844a"; } 56 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/en-ZA/firefox-47.0.1.tar.bz2"; locale = "en-ZA"; arch = "linux-x86_64"; sha512 = "859730132549691b61e936813f0f5fd3e62f3ef6fa9899e3f68bd3178b7438b4c6b49f54f00d4898b568d6abccdd55a0f9fc6c51858e95735fefcc13de460d73"; } 57 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/eo/firefox-47.0.1.tar.bz2"; locale = "eo"; arch = "linux-i686"; sha512 = "8ef290bf1eb3504ace393b32c2da64d14435edc327c4f13a40cd925efaf7e042a03b6877689b3f2290f85625410a4e48dfb2cf676f138fdba87ffc597b25f4b6"; } 58 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/eo/firefox-47.0.1.tar.bz2"; locale = "eo"; arch = "linux-x86_64"; sha512 = "7d6167749d2a57a9c12180302a825fee14555e9050b6be3c83dd35183678bc36e10391cedcc864ca0dd96d297997a68627dc4fc1a9cd8922e789dcfa814f18eb"; } 59 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/es-AR/firefox-47.0.1.tar.bz2"; locale = "es-AR"; arch = "linux-i686"; sha512 = "07768e3b3ed903f4327881a132f192a65842a376eeca6d10ec0de69fefb4ddf3d7fee2a704bbc8d229c78556478814d9e53940cca9edee58270d9790d6b76998"; } 60 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/es-AR/firefox-47.0.1.tar.bz2"; locale = "es-AR"; arch = "linux-x86_64"; sha512 = "cac021af09abd742273dc77291fb1528dd5d6d38cef3a5e36e615fbb9f3908655fdc96ceb93fd131c4879acf24e702a044471136e7575f3b550ebcecd982047e"; } 61 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/es-CL/firefox-47.0.1.tar.bz2"; locale = "es-CL"; arch = "linux-i686"; sha512 = "e92ce6bec5b1ee8cf3db0a604eb4cae6245fb6d04a48eec64b6dd55139f3606cbbcb65511e29a3164d6572929b7216afbaa7f034a2191eba100ecb7403740504"; } 62 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/es-CL/firefox-47.0.1.tar.bz2"; locale = "es-CL"; arch = "linux-x86_64"; sha512 = "98e57146481a53061c0b30872290ecabc2d14c73805a9461d82aaaf4cf9f301521fd55b01c8159c09a56f52a1580d83c9527986b1390f496d0fbd11227216e7f"; } 63 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/es-ES/firefox-47.0.1.tar.bz2"; locale = "es-ES"; arch = "linux-i686"; sha512 = "c44df66e140ea9190112f89aedff9519b6bee18f5e2b54aea19acd233e623c299aecf134cdba70d366fcaf6b7795d220052ff75409c7a04394a7aa02d9ea708e"; } 64 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/es-ES/firefox-47.0.1.tar.bz2"; locale = "es-ES"; arch = "linux-x86_64"; sha512 = "c2d70bc5a304df7b2484c8fb2b374f8e31a69049eb223a53dbd0e4b51e4ccce907efb1674eb637370ce7c3947ba5c09e65f433d10e0f328b80d482f3de9cae12"; } 65 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/es-MX/firefox-47.0.1.tar.bz2"; locale = "es-MX"; arch = "linux-i686"; sha512 = "96dcb75cffeb85b85f092e295e38ee55c272714c40609ca90cfaac5fa0cfdb3efe8e993319ee690b4a7938c42346bf39f063ab1f3db606e743c1e4720de5a93f"; } 66 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/es-MX/firefox-47.0.1.tar.bz2"; locale = "es-MX"; arch = "linux-x86_64"; sha512 = "60b50d6726b2e1985564bc02263eb88c9b4c1bb39e6d19812ecc6751d6ad223ba04f65a7755a946fb15dceab90628b057bda89c55fdd4972604586f52c5a4b1c"; } 67 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/et/firefox-47.0.1.tar.bz2"; locale = "et"; arch = "linux-i686"; sha512 = "0a4bef2277f729c93db413b68f8263eb356f7b3278880574b8ebe010e2db9067b803967e1f0d6912f128a9ad5ef204466f52ae277f3addfb8fe9ac377c3b8a3a"; } 68 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/et/firefox-47.0.1.tar.bz2"; locale = "et"; arch = "linux-x86_64"; sha512 = "ed1bd4fd67262958601f1107edc589bb28e9b7f9faf0edebdcaf0c07ec6007f527a9eab434582a65271a8f68edac8178601da54eab9398f48b31126657a21b0b"; } 69 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/eu/firefox-47.0.1.tar.bz2"; locale = "eu"; arch = "linux-i686"; sha512 = "8c5c9406345e2a1fca3544aeb742dc0d254c804d887e3614613280c050a63b69320d4488b017ee16b0a2a07bea862e8b245baf7edc9df65689d509986f3c5958"; } 70 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/eu/firefox-47.0.1.tar.bz2"; locale = "eu"; arch = "linux-x86_64"; sha512 = "d8f7004e24033f377391b577c549b66f73cf0e899ce5f580eaccd07713ec03b4362db7b222ce6345d113641d3e6a951302939bbb155c47ec0fa46a201a631427"; } 71 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/fa/firefox-47.0.1.tar.bz2"; locale = "fa"; arch = "linux-i686"; sha512 = "f4e02737e20b6ffd3bc2b3a5e5fa59fc80a8e37dc8459ad4a6b99e7621a4d3f360884915f7136dc201830efe371de37977ef3e27f34f84e2cb734c1fff8f6e36"; } 72 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/fa/firefox-47.0.1.tar.bz2"; locale = "fa"; arch = "linux-x86_64"; sha512 = "8f624b066faa39341b750dbb702dd60ee6ad75b3850c659dac2e21969ebed1f792423e9fb0a9cae7fc456943020f9a0155af5d7c596433eedaaa9990ce07b7d4"; } 73 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ff/firefox-47.0.1.tar.bz2"; locale = "ff"; arch = "linux-i686"; sha512 = "22a2c5376b1e8d770659475085d98ac1f1020cd816ff3ec6ccfcd68f2484b1b0dc25bb84ca52f4ad27144f4da356ce5e7fd54411d12ae7c852064509470d5828"; } 74 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ff/firefox-47.0.1.tar.bz2"; locale = "ff"; arch = "linux-x86_64"; sha512 = "bcb3dabc250045b8ad444219055fd9d14902296ef3f9c320bec1bef940f84eeb0d4a50249805188ae96ed0288a70f0216350ee79191beba49aeba890ae515b41"; } 75 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/fi/firefox-47.0.1.tar.bz2"; locale = "fi"; arch = "linux-i686"; sha512 = "0c505a0e1d3030038b61ea159eece3892bcc7d947b6d7010c0be8791525c9d91ad1170d4cb45260584c93a78a4bc831b7acd9f28e95ae62e5b96b31745dcbe50"; } 76 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/fi/firefox-47.0.1.tar.bz2"; locale = "fi"; arch = "linux-x86_64"; sha512 = "f347cde005c6b61366c633db5a8cbc5260dfa0d68230a938d847e3f80bff2f1bed09dddded7b1728f4ef9525610ecd046743f9e71eefb467943fe6b72ed198ca"; } 77 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/fr/firefox-47.0.1.tar.bz2"; locale = "fr"; arch = "linux-i686"; sha512 = "8fb8ea2eab82740657a6b822b330fa0c289c31ad900683b4ad07b1e9b0c6c4e14f50af39d6d0f787642010628800b0a99b5ab0c4cad62e4a579390509b1ddd13"; } 78 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/fr/firefox-47.0.1.tar.bz2"; locale = "fr"; arch = "linux-x86_64"; sha512 = "ae79c5b7f9f8305c3631f4f913baa341a9beaa7a2ee5df1c6c1826030c21bf22b92095ee579affb8911110bf3bcc359793c0beca18d4c32b1fcc1f3d1dbcc4b9"; } 79 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/fy-NL/firefox-47.0.1.tar.bz2"; locale = "fy-NL"; arch = "linux-i686"; sha512 = "1c57d02fdc33ff53de48ed9aa9e89ecd5a56d35b432d5651e71bbfbd5f9dfd18aeaf14d10b881f72df871afd00a12b31ff05cf9d5c5a55cd44a92c7a0156523d"; } 80 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/fy-NL/firefox-47.0.1.tar.bz2"; locale = "fy-NL"; arch = "linux-x86_64"; sha512 = "f30f59d630c5d289b61dc7440f7bbb976eb16732370f827365a477090cdf9f2859f39afb7ff9d9be7e8a022f181f2aeb7a3005c00f4c14e6505a28db7ae48a9a"; } 81 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ga-IE/firefox-47.0.1.tar.bz2"; locale = "ga-IE"; arch = "linux-i686"; sha512 = "739d5feec4bffee67876227f6783d35675f4c0d168b7abbe5f97b6e8edce7fe4b8f04f8240087f7f208db4180f3417997b661c93ebe046decff3f4f4fecac839"; } 82 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ga-IE/firefox-47.0.1.tar.bz2"; locale = "ga-IE"; arch = "linux-x86_64"; sha512 = "cb4344df6e07db839ce8c9fffd1b7b310c8108b5218cea3602972806c1a40f56bf1355ede4cb3595f54179b16e3470e25bfbddc8e39d726c7d6c1e99d128ca8b"; } 83 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/gd/firefox-47.0.1.tar.bz2"; locale = "gd"; arch = "linux-i686"; sha512 = "91004d62bb5f1f6a1d65b35fee9e594d21d9877669e042cb4c9a834b01b35797363e1433a9ce5a8d0a9f64c8b256da6a6d09fa3342b74b7c2af8ce8afb3e4e56"; } 84 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/gd/firefox-47.0.1.tar.bz2"; locale = "gd"; arch = "linux-x86_64"; sha512 = "f04034cafed25c34713ffe4109e53b107b8fe81321c0c0c035f54ff0ce67ac393b42db7598edc658d3f026e447f9ff1c4d1cfdedd31066eefb6019117248e4c0"; } 85 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/gl/firefox-47.0.1.tar.bz2"; locale = "gl"; arch = "linux-i686"; sha512 = "107bdebb92ce86f39cdc45d6bb24a9c4d104820eca6bb77950693ccbd55e7f8a2f143fc3a5bbb1bfda161e7a33c8f6d8d2686b09da1497215defbca2b4e4e109"; } 86 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/gl/firefox-47.0.1.tar.bz2"; locale = "gl"; arch = "linux-x86_64"; sha512 = "c841af5c73343475150b5404b4b54396bda845aa5b231a742aa17ecb7fdbbc5cd4123efc3ac2ede1c24f485d04bd87e8bf7cb00b7135bef236ce56afa0c27a19"; } 87 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/gn/firefox-47.0.1.tar.bz2"; locale = "gn"; arch = "linux-i686"; sha512 = "20954e218967772488bd895ebf069522c3f4c56ebfa09a7c8efb740158cb95b6be76cee8f4d7f2c1c6c505ca9071a0ddc1914784a54f669d337d5196f18b6f4a"; } 88 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/gn/firefox-47.0.1.tar.bz2"; locale = "gn"; arch = "linux-x86_64"; sha512 = "aaed68f13e326792671669883b452b65556998ed757ed5b745c6453d6bae8865a06f137709de37ace2688e2e09f1b96ecf2e5b6374b4170d29100c6f83ce22ce"; } 89 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/gu-IN/firefox-47.0.1.tar.bz2"; locale = "gu-IN"; arch = "linux-i686"; sha512 = "205093ecc0dfcddb2b90e05b1a17f75805a4597bbfad214d67442fd0d952f765b031ba63a3c399ba9c1c46e4d05b3cf786f01c46eb8990240a16431964c93a94"; } 90 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/gu-IN/firefox-47.0.1.tar.bz2"; locale = "gu-IN"; arch = "linux-x86_64"; sha512 = "a84ec5015f6922a22a284eaca985010586067370d818e77d401b58782f86dcf2f534f1ef021719c170f1f502525ce25c94760d3b75481c15fade3c25b969b563"; } 91 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/he/firefox-47.0.1.tar.bz2"; locale = "he"; arch = "linux-i686"; sha512 = "5727fc4699316c4b34be1c2596c5cc20d5fc9d2062b1e106087cdb34b788fe3ebbc098acc8c690bc83c9d9be59ac3b3977fd9116d766ce908aa088660fe34771"; } 92 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/he/firefox-47.0.1.tar.bz2"; locale = "he"; arch = "linux-x86_64"; sha512 = "c399969bc24b10ca1c1eff17d3414f214cfe3e5b73282942ead5b2ba4d2c58b74d665b13031ccf42956cd45f0fc7b206dd2f9674103c1e3a8861a33577b5caa7"; } 93 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/hi-IN/firefox-47.0.1.tar.bz2"; locale = "hi-IN"; arch = "linux-i686"; sha512 = "f014c47a143d425aa3452be2bbed199a8b5e75d278c35fa86bb6bcac40bfb32bdee22d030386c881c818b465451b35c81f97bf29f9ccfbea606d52c822057899"; } 94 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/hi-IN/firefox-47.0.1.tar.bz2"; locale = "hi-IN"; arch = "linux-x86_64"; sha512 = "0e5dc0970680886dc02448d7118b6864092699fe44f3276ca17cba160aee59418f8e39338247897b118de0e1fb7634cf725ddc6a34a8b6f002b7a78d92deffb0"; } 95 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/hr/firefox-47.0.1.tar.bz2"; locale = "hr"; arch = "linux-i686"; sha512 = "a9af43f6cf6f493f728b8942d3a600f3cb3a23eb0818d284ddabb8766f7d274aa0a232f9925b65625bb56d00864946dc6b0567491cbecdd6a7cf626b6964d9b1"; } 96 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/hr/firefox-47.0.1.tar.bz2"; locale = "hr"; arch = "linux-x86_64"; sha512 = "d97951148ca0ba80a67020f323859ea3f508e40906ecfd18f7a8fbe7a2bc85ea4635945b5c6063e1d5d18456471604075e6767da9a4fda6a09dd3e992a7d3a88"; } 97 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/hsb/firefox-47.0.1.tar.bz2"; locale = "hsb"; arch = "linux-i686"; sha512 = "2f7adccdc894f345e861b29a6d65909b1cde2649c69ec9223f784e659e8e3f4668f815b3683fe691de0749483167d26885a0199bee88e8524377c7eee3afbe99"; } 98 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/hsb/firefox-47.0.1.tar.bz2"; locale = "hsb"; arch = "linux-x86_64"; sha512 = "70e39341ede01e18c653a0eb56b48e31c73ee3df54ebc11bcd220e2d8e19c67c3e248095c4d070b12a0eac5c24acf5a8ad83069673dcaa684229f4706103685e"; } 99 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/hu/firefox-47.0.1.tar.bz2"; locale = "hu"; arch = "linux-i686"; sha512 = "1fc01c6dd873e2194e6196b1bdb0246e95d0b0520f558b21a2052251d2a5202141c09410c4631b3f025479169d8f68411c2a24f32825261fa8d65696fc7cbe0f"; } 100 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/hu/firefox-47.0.1.tar.bz2"; locale = "hu"; arch = "linux-x86_64"; sha512 = "b4509d671d7eac055812add85ae571f52c90b4eeb172d21c22ce844c70192ba235f37a732e94a0edd6794ecd5a8caa5e8bb6ce05a26d3705902d3628420af871"; } 101 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/hy-AM/firefox-47.0.1.tar.bz2"; locale = "hy-AM"; arch = "linux-i686"; sha512 = "a2b7cd1ec95a0b5eb064e816cfcfc6a74a92806772592947267c4b266bf7ce77d1beb17a7c25b905251cf497ca8dfabf16bca367cf6d9e9e635182f306bd71ca"; } 102 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/hy-AM/firefox-47.0.1.tar.bz2"; locale = "hy-AM"; arch = "linux-x86_64"; sha512 = "9997ca45051e609e289d7730caf1254adacefbf8e618a165750d5bb7ff7933d014781af76501296c89a4236fd3ac477df6e6be5a5dd45f214983c851a856ce5a"; } 103 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/id/firefox-47.0.1.tar.bz2"; locale = "id"; arch = "linux-i686"; sha512 = "bda5a7c599885bef966daa35a3f34297e38534e32967142ff9cc720a34c7aa9730e3f24623c240637838eca03f78f9b2ee30af3ac3dc8ba48f9664c56b64c789"; } 104 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/id/firefox-47.0.1.tar.bz2"; locale = "id"; arch = "linux-x86_64"; sha512 = "97d16c5b4382c7fc6ccee416d671e47d345834a44ab111aa486a41c756b25eb894628d0128e8454fc15f38937bc40436b12e60752ce7b7c1fe35a230abaca337"; } 105 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/is/firefox-47.0.1.tar.bz2"; locale = "is"; arch = "linux-i686"; sha512 = "576b904fb836ea735f652c6b9c91891dee164edd3523c5f99d68cccb4bd6689c29e4c579b6cc44e699a8900101fb8d223f9e0b0860f71a2814ae0ee2c70609e5"; } 106 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/is/firefox-47.0.1.tar.bz2"; locale = "is"; arch = "linux-x86_64"; sha512 = "592d65977c34c6133f5745a85722f822efa5956bafc6e880954a0b318fa59712c754e882768755fc08f5e08a1c99493c0b30b4219c46169ba663258e3fd3f3fc"; } 107 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/it/firefox-47.0.1.tar.bz2"; locale = "it"; arch = "linux-i686"; sha512 = "4d749e1b5d8432df789f29a247ab48a688d4aa16fb25dcf7209783c6036bfccb9ff8ac32dcd09dab1708f71896fa034576d6048eef077d1a6c0a3dc58d3cdb26"; } 108 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/it/firefox-47.0.1.tar.bz2"; locale = "it"; arch = "linux-x86_64"; sha512 = "087c456d691225d9aef54b2013af69cc7bf2501f83060179112e9c40c1d6762202f68e6329a936df091a1ae6aa5f20bcc96a4c8b0451b71270426bddfb45d15c"; } 109 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ja/firefox-47.0.1.tar.bz2"; locale = "ja"; arch = "linux-i686"; sha512 = "cb4b0bbff7d322f2f04fdaa50b365d4e0a1ff1786206539cd124870ebd69a9305b88d39b9fbed41c64ddbe68098e02c51a0dc665262424f8eff882b1497ea1fd"; } 110 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ja/firefox-47.0.1.tar.bz2"; locale = "ja"; arch = "linux-x86_64"; sha512 = "b6c9b419a3e746957f93a4bdba9043adc3911b6f76e1eea2e4e31e77e9aa9057ce720205db4af5586a90df4d6b774b90829f1d7689e77c560c50ccae755400b9"; } 111 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/kk/firefox-47.0.1.tar.bz2"; locale = "kk"; arch = "linux-i686"; sha512 = "ae7711d86ce8180997f44f9309a63a436bd8b70ed0dccda773c34ba816daae99b3b1ae913ee87f4d1f9a4e8f016aea670e89652823df16b5e8414bb58ac28225"; } 112 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/kk/firefox-47.0.1.tar.bz2"; locale = "kk"; arch = "linux-x86_64"; sha512 = "49fb6b5ab6aa12535373927519bf36099da6fab7c2e1bcd6f5ce73d91679f58e81eddd3556df65b305fc2d1cd439cf6de081980fa98ff79df16b620ed41290fd"; } 113 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/km/firefox-47.0.1.tar.bz2"; locale = "km"; arch = "linux-i686"; sha512 = "29dd1808c1430c01dbb395d5e5a833bfbde85453278d4efd32f1afa1eac19a651c0c3a42eb4ba3402f56a8492e80746d753986c0ec0f1a6dc0e5eb6778b5c6ae"; } 114 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/km/firefox-47.0.1.tar.bz2"; locale = "km"; arch = "linux-x86_64"; sha512 = "f53966aed30b57a601152f09a26414e11bff4ff31683989eb1e47546eaa32fce8cbb6511043f9753cae076d23d6f2172c2b224313cf5f3262f109b49119175e5"; } 115 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/kn/firefox-47.0.1.tar.bz2"; locale = "kn"; arch = "linux-i686"; sha512 = "17dc37df2b3d5a87bbadc4d5c80d4ddff03752b7a80f5c76171ce9f0bc4b8926964b6315cd4f0c6c9dd3142cec56b464503bde34ec3c69e2b8a66ddcae72b0ec"; } 116 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/kn/firefox-47.0.1.tar.bz2"; locale = "kn"; arch = "linux-x86_64"; sha512 = "2af5ac5c254bd0ed2d08656a6fee7966d73aa89973cfad67fd18d7d88fd1f18a2b882de7854af46a3ebc6acba4cceacc06942db7ae495faa2c6ef21c65e94158"; } 117 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ko/firefox-47.0.1.tar.bz2"; locale = "ko"; arch = "linux-i686"; sha512 = "415fc260f3dcc2ede6c43194501d9522fdfb106f7c86e5d8f5929df6615c73023fffc3efd190deb68bf08bb2a0d4ab34f7605e222301c8350b980f2dbc289c8a"; } 118 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ko/firefox-47.0.1.tar.bz2"; locale = "ko"; arch = "linux-x86_64"; sha512 = "c991c0b9a89b618ac046882b929fd7e3689e19dd96edf4535b25f9172b6baaa801a4490ae4fd35e82ca3c776afab74a0a09b993f8ae8c2a603d210f2cf248f73"; } 119 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/lij/firefox-47.0.1.tar.bz2"; locale = "lij"; arch = "linux-i686"; sha512 = "3cd367654397d14b782cea4ef8c96f1f6938f011576a8dba92dd4ca832ca3c8682f3e0e161a4288b112fca550d556080d0ece5a79e4c4f6ec99a9298feb6fa12"; } 120 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/lij/firefox-47.0.1.tar.bz2"; locale = "lij"; arch = "linux-x86_64"; sha512 = "2d7475c544df807a956feb9361f889ba0f5e43dc52a9e1dc9c469d86e97f344b4f2995e3fa149a77662969f3acbcc998f430973b2b9d28b23c82c5058b4a9dfc"; } 121 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/lt/firefox-47.0.1.tar.bz2"; locale = "lt"; arch = "linux-i686"; sha512 = "35c8a452ca845576739d5faa9dab6f3c34dcecf9ce95870f68699836f3534b4807c91fbe80007950abbbca662e6d01b406205b3e4cdf4d33e0717ea5d6f57006"; } 122 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/lt/firefox-47.0.1.tar.bz2"; locale = "lt"; arch = "linux-x86_64"; sha512 = "8791df09d841d5ddabd552d0fb0dc7e9446d23092bae1010d92bc3b056a9ad4a6dad01c5d8db531a273945eaaf4c30c922cd03d7b17e1b6be263e0bcb91b8384"; } 123 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/lv/firefox-47.0.1.tar.bz2"; locale = "lv"; arch = "linux-i686"; sha512 = "22b865a344a46096c53a72ff6b1402d00808bb3b49ecabe6f4115ea60e40e522d64afc701648772616fcb784a963bc6d5bb3f89517d7f8407f22fa82d81bad98"; } 124 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/lv/firefox-47.0.1.tar.bz2"; locale = "lv"; arch = "linux-x86_64"; sha512 = "3c66af306b1a8d0a684c12511d95353c0bdda0bea981ce4e577c928be03e12b582b19dcaccdccec551b3cb0fb716323b1079180aa7a8f1204f5e4b5a84b72831"; } 125 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/mai/firefox-47.0.1.tar.bz2"; locale = "mai"; arch = "linux-i686"; sha512 = "780fe423a3cd56a7452df32679ee07a0e328b21cadc78faa2721cec59185c4a4467aeeb75e9237cc86d38dfa2cd71530f02156c4fb9515582ca564dd53d47543"; } 126 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/mai/firefox-47.0.1.tar.bz2"; locale = "mai"; arch = "linux-x86_64"; sha512 = "d27218b59edf004dc57cfa9ffd70dbeb59b7d3c0871b00388a56b505629fd82ddd6f6e0147f5b4c67a8ad72a674e384b66ba2f9455fa9ff218c9ada4b27d1d7d"; } 127 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/mk/firefox-47.0.1.tar.bz2"; locale = "mk"; arch = "linux-i686"; sha512 = "da7ae3718f3c69ec9b62aaaea93951375d82d8d02818d6855fa9f085a64b69c155a1336585d786ae2d33d657110b787f62909dc9e4d54c62d2ea94d2fa8fee3e"; } 128 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/mk/firefox-47.0.1.tar.bz2"; locale = "mk"; arch = "linux-x86_64"; sha512 = "95136f8bf86014a63bcbf4a5cfbd778c4c7e6a84618aa0f6a6948bb597638569b3702e0569b50c5dc9b46339e723377faea8964b921ae9802043fb7983a2c4e4"; } 129 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ml/firefox-47.0.1.tar.bz2"; locale = "ml"; arch = "linux-i686"; sha512 = "56743acb54283715fb2a910caa85dda61f7e2c1c5e012aa222dc07e3b522572500056fddf990b7ef03a175ff8901fb11b113bcad5c2adf4a6e6e032644ccca2f"; } 130 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ml/firefox-47.0.1.tar.bz2"; locale = "ml"; arch = "linux-x86_64"; sha512 = "134f35f5f6616c2a7eec48f637277fc02e23b57bf38eccff9777bb08c70a41fe79967b69567f75f9c8bcbad4b22d2ddaf16bec98e399c4b8ca9db9b70e99ef58"; } 131 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/mr/firefox-47.0.1.tar.bz2"; locale = "mr"; arch = "linux-i686"; sha512 = "f29de7ae7dba03465baf86f93d778c9faf3055d50295977c0207c7e4daae6f7ad733ed38e1323263cebe4f737d9a1616024333a97139156470de1a9fe3c16276"; } 132 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/mr/firefox-47.0.1.tar.bz2"; locale = "mr"; arch = "linux-x86_64"; sha512 = "731b4f143fd1303ab54ea3f1b6aca6c4f78ce935caae32fed0b8cdcd46c0ade8c8977131a3be786ea929a7d284c3d45d34851a0d81242761f722f0bceb126957"; } 133 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ms/firefox-47.0.1.tar.bz2"; locale = "ms"; arch = "linux-i686"; sha512 = "d372bac105f2012b189efedc449c7c183d0daf64cd7a40822ef9d685ce4a1550ca9699620440dd198b13f95513a577766e9f1a8e88b212492831bf7ffcac7e0a"; } 134 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ms/firefox-47.0.1.tar.bz2"; locale = "ms"; arch = "linux-x86_64"; sha512 = "1287f36a742fa834d5f31e6bc2f6d3651e54f2bc8845a1f0f647e9a9e38ba66c58138961185897c8832107cffff06167a35dc3ee1f0ff830f997f65fb0854a63"; } 135 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/nb-NO/firefox-47.0.1.tar.bz2"; locale = "nb-NO"; arch = "linux-i686"; sha512 = "ac3e46080e188e56a6b67ff77aeffdba7982d7c3aa4156a6f2781ef6b8fe63cac50d678e5afc91aca4ad16c4384d2b2727f74ddc4083da91a1e3590ac98ec9d2"; } 136 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/nb-NO/firefox-47.0.1.tar.bz2"; locale = "nb-NO"; arch = "linux-x86_64"; sha512 = "dca52381e45b5c2d89f590971d830010a9ec1a2a513fe655ee93c3fbd980adcea78787701595a95402bdb660c2f3e0a489e001deba13798337493655798c713a"; } 137 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/nl/firefox-47.0.1.tar.bz2"; locale = "nl"; arch = "linux-i686"; sha512 = "6ec01f8eb18384aadb5715a996c8410ffa94b801ee1f1b1ab43bdeb492e179e781e8b85acbeff4a25cb4fef847ce3e2335968458d9f6e47d046083264e91f6f7"; } 138 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/nl/firefox-47.0.1.tar.bz2"; locale = "nl"; arch = "linux-x86_64"; sha512 = "7d5840518312dd167d914a8f7fa5670fe17f9a6fc39ccd128e30f689005b35bd352d0602993713c3d05288f2b036829be8e08398d536e4aebf2341ae2290e633"; } 139 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/nn-NO/firefox-47.0.1.tar.bz2"; locale = "nn-NO"; arch = "linux-i686"; sha512 = "a185f7592649a91214363cf2a0474b5895f33342c98cd4bdc48fafb0cc76310b2ba4f46575970d723c76b2ecfeba8e2b39d9671e6059a15bcb2565258096156c"; } 140 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/nn-NO/firefox-47.0.1.tar.bz2"; locale = "nn-NO"; arch = "linux-x86_64"; sha512 = "7f8e7277bcbfbe5f40c161f1ebbeed86159c2b6205a5ea55cd8b6253fa6742bcfede11d4de6c1aba36e2b1e98f9c9a7b8e26f9aa35e1eaadc1d011636d429be3"; } 141 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/or/firefox-47.0.1.tar.bz2"; locale = "or"; arch = "linux-i686"; sha512 = "a543a7d3f4e24364be7e4df65a81da82d955d1268a4cbce741ad7ddd5f4e9916573e271f02af1e92b123a4da2c7f312c17f6ce714e3057a1b204484ef12133d8"; } 142 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/or/firefox-47.0.1.tar.bz2"; locale = "or"; arch = "linux-x86_64"; sha512 = "7672596470cd8f49f9c4558b05bd637af1650da729bc518681a8cde3ec785358121fa7ef209e123fca4b59df1a63878832bc32d2ff404b5d2a818b60ba10c15e"; } 143 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/pa-IN/firefox-47.0.1.tar.bz2"; locale = "pa-IN"; arch = "linux-i686"; sha512 = "a99b60ae1eb479e31f838fd41d5de325c418762fdcfa5e0f3bc3d5da8df108d3b64ce5bfac0af09663007becf5327164db8dea0ea7a3876586cc43030a780199"; } 144 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/pa-IN/firefox-47.0.1.tar.bz2"; locale = "pa-IN"; arch = "linux-x86_64"; sha512 = "f0110b74842f924808f74979061151fec711d10a6005d2da2fbb8d46fa2a25ecd5a2c804e58c10a918efe570d4d67d05578b0245f526e1aede4bbc786e9f304e"; } 145 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/pl/firefox-47.0.1.tar.bz2"; locale = "pl"; arch = "linux-i686"; sha512 = "7eaa2bad351429d76b476819a1529ed1609388968327382cc13df235a294f2e9fb14295341ff15fe3b2815ffd1c6c8978e2aa104a847fd2cb4adcf2ae3b0b974"; } 146 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/pl/firefox-47.0.1.tar.bz2"; locale = "pl"; arch = "linux-x86_64"; sha512 = "a40e2c15cff0e7f7bff8a5c0bc4cf39df948a21bd37b34ffc93dd87e1f5256526a25526e457fcfd8d081bc872dc1bec13e67da3cf671b6a16dfa17850be4743c"; } 147 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/pt-BR/firefox-47.0.1.tar.bz2"; locale = "pt-BR"; arch = "linux-i686"; sha512 = "c9cd96e68fa2e1f73a49e71c287a25be8d45a8ebb56262e02c40ba5869fc58c7fc43a1f6958592bb377e7dd4064d64f5ebcbcb5cd3a9fe0a007c2da665f50a66"; } 148 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/pt-BR/firefox-47.0.1.tar.bz2"; locale = "pt-BR"; arch = "linux-x86_64"; sha512 = "1184751c1d1a0a9044f8df2d20aee7dfe332dc5f851802ebaf2c5c83fa2bcccfd913cb6e16d2baa449cff1b02aa18f828489914c0741a2ef2a46d54fefecc268"; } 149 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/pt-PT/firefox-47.0.1.tar.bz2"; locale = "pt-PT"; arch = "linux-i686"; sha512 = "86538057ae91b1297acc11c9bf3f7d24ba1950edead89d4733f7c898cf53e3848054bf391a975f19766b69f4c56f576ca54e4b8da806db7416f3e3d91777c3c3"; } 150 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/pt-PT/firefox-47.0.1.tar.bz2"; locale = "pt-PT"; arch = "linux-x86_64"; sha512 = "0a480c26e5dfe2bb9b536e122ae32e18a6dac999004493839cb506c1ad615e095c554d296f1a77bfccbbb86b58bcf549db83f7de51d02b68d1eb752b421f23cc"; } 151 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/rm/firefox-47.0.1.tar.bz2"; locale = "rm"; arch = "linux-i686"; sha512 = "751ffe931cd60296490c7164f49f61f4a51bac5210328a18d02261a07eb607e181b2bab4fa0b59d2df15334152386bf816a984840d2331b7e801171be9c90594"; } 152 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/rm/firefox-47.0.1.tar.bz2"; locale = "rm"; arch = "linux-x86_64"; sha512 = "3e526c9a1a876e5d2c548c9a68803dd11c04c8214e18eb09c0b1c3fb3833f64c8a3362db8083ac5de81c59268439b53effa3bf1c64807fafc874eb8ed9baf188"; } 153 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ro/firefox-47.0.1.tar.bz2"; locale = "ro"; arch = "linux-i686"; sha512 = "73cf6a18deafb7ba93fd60cba3ba0bb0191471f977c41bac11bf2fd6cc6f7fd7cf2ad125ac5cf168ef577d71dfb0e893e182f39be6ad186ddc642d87c40041a5"; } 154 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ro/firefox-47.0.1.tar.bz2"; locale = "ro"; arch = "linux-x86_64"; sha512 = "b62c54b8694b4a662c1d336056d404a8d432ba0a3d4f2964b5c5acc0e39b668fd228105e1c4e307bfab1acfa5c3ce223db4229df01866cdbbc7c1ac95e70fe2c"; } 155 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ru/firefox-47.0.1.tar.bz2"; locale = "ru"; arch = "linux-i686"; sha512 = "6ebd3b3a1f3613905313129cde7cf113bdd777fd0f600496231ba813a95b04309b25016dd69891d31189a93ccad3f87b9c69d54d6219ad39dd38d1181b1f3102"; } 156 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ru/firefox-47.0.1.tar.bz2"; locale = "ru"; arch = "linux-x86_64"; sha512 = "539a22d13587cdcc21b6f76ff24ccfd1df98cbaaacac802aed46ba8f2bfed27cb2f3e5c146cbd2c3559aaff22297e692030b9612041a05a6bfca08f49bf0d2fb"; } 157 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/si/firefox-47.0.1.tar.bz2"; locale = "si"; arch = "linux-i686"; sha512 = "bb0d1621f5b9af886fca0ea7cf7fd851d7c22d2d8f279a7b88e9bce98be33ad7b75d6a51ab47ea859802ed39b467815db60409285afaa0bbf4bb1ce6d590eabc"; } 158 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/si/firefox-47.0.1.tar.bz2"; locale = "si"; arch = "linux-x86_64"; sha512 = "90337d193df7db41a1384856938bb62212952a80144dcc319a725a9b567ffd4deb7bb7af89b57891d3c17499ff466990e656edf7d0b017b8f4e0370aab445477"; } 159 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/sk/firefox-47.0.1.tar.bz2"; locale = "sk"; arch = "linux-i686"; sha512 = "23a15e6ad5ce9b03c218be4e26e603a412de4d870d5f64b599ae511bfc66bf2cf04613cc06fc1a054d06b80435e284456c0b08e33f34d8c9482f5ca23da6ae62"; } 160 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/sk/firefox-47.0.1.tar.bz2"; locale = "sk"; arch = "linux-x86_64"; sha512 = "a86cbed60f65e4ebb36c614d846fbb2515945112fd4f2482c3a63b49a62c3acb310f050dcbd57cc76a808c049eefd8f779d6aeea53362dd81798bb8d7177c86a"; } 161 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/sl/firefox-47.0.1.tar.bz2"; locale = "sl"; arch = "linux-i686"; sha512 = "8ae008f0077081ef40de3bf08c2de294231f41439a83d8a41a485f53e95ba3f4fc6ef03d6ac98e8848c3f3dad290978f1607d8c847f1622bd86b7d38cd0be730"; } 162 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/sl/firefox-47.0.1.tar.bz2"; locale = "sl"; arch = "linux-x86_64"; sha512 = "34efb560c65329c7f3f6b341cc49ac4952f24e6e9b34e7f5bd45d98618a4d03ac89c6f62580223efd2d37db24a03f76a54381d4162f5430b887122bb56eb49d9"; } 163 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/son/firefox-47.0.1.tar.bz2"; locale = "son"; arch = "linux-i686"; sha512 = "d3e5a25fbc4a786239a7ae543fefb7b7e3ecc34192c8326af915f18b9b08436656bf68faa4953a34bdc464e32305baecce800f91ef0152bb4b4a8323ab448f33"; } 164 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/son/firefox-47.0.1.tar.bz2"; locale = "son"; arch = "linux-x86_64"; sha512 = "ffee5d1a23e91911fd1dedb5ecf24bfc6b1733fb582e64a5e07d4df4b7afd9a6c502a70ab3af6624b4594f5ddcd81bc8962ede5b693cc035a96a561389f6bfca"; } 165 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/sq/firefox-47.0.1.tar.bz2"; locale = "sq"; arch = "linux-i686"; sha512 = "1cbaf8c32d1d3205cd85127839eed11b416903960c9e411b9adc71c42ba4add47acddd32a9217bb68f27b90d6765892edf2d356e21235c5bfd5cf69d1ee719f9"; } 166 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/sq/firefox-47.0.1.tar.bz2"; locale = "sq"; arch = "linux-x86_64"; sha512 = "16d93961a53ecc3e1ae3480be9e34f2a22dec2bdab55dbd35d1ea79ecf2ee48f195380bd52efc7d39529601610793b75daadeeb54dd76c9a3702c786af25acdd"; } 167 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/sr/firefox-47.0.1.tar.bz2"; locale = "sr"; arch = "linux-i686"; sha512 = "0b2c5234f1787cd972fad398dc270766fbc3015dc1bba29755e5316f207af9f5787d4aa41e96cffd2c9d31c57a5d1896e63fcd04e6235a4a6798469e738fa10d"; } 168 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/sr/firefox-47.0.1.tar.bz2"; locale = "sr"; arch = "linux-x86_64"; sha512 = "e7c7e7ff7fd81ca86f45997faed7244e4d807c3e5ad7ed66d6feb38c3e9173eaf136bd34af690ce28534f0c531c7f1d11595ec6502dfa42778cc19dee4334c49"; } 169 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/sv-SE/firefox-47.0.1.tar.bz2"; locale = "sv-SE"; arch = "linux-i686"; sha512 = "dffb94b0ddb4b9d2effba3894b408c9f191f2079dc4b47e214347a235c9bf1adf77e520465691d14a274c3f3344c7f8b7d41965051d506728347e0af1117ad27"; } 170 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/sv-SE/firefox-47.0.1.tar.bz2"; locale = "sv-SE"; arch = "linux-x86_64"; sha512 = "b601906d28f071c6beb3dbd6b37fa68f50809c9c47c9db69d631127ccc7b784e7d3b278aea6de060b34d83b6c78137da32b77f8e17ed199c3213b89dd9391264"; } 171 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/ta/firefox-47.0.1.tar.bz2"; locale = "ta"; arch = "linux-i686"; sha512 = "1a496470ef8e0899bfce66b41490f54d4d32776eaf60aca8725c4732512f1d3befb2e1fc3b942ebea95fe2359509c43d41649e5f90498264b8e02a3352244260"; } 172 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/ta/firefox-47.0.1.tar.bz2"; locale = "ta"; arch = "linux-x86_64"; sha512 = "00e6dbc43ad3c77693903fe534722094826637698df691b266eb801b27cd5e63502c21ca3e34ff939a7645a1f75d36fce6154626019eb96bc73cc39ab845c952"; } 173 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/te/firefox-47.0.1.tar.bz2"; locale = "te"; arch = "linux-i686"; sha512 = "70ed539571cadf241f819b68ff24829db32f56287aadab31656fdf66c0ed94ccc6cc11b6cef6e2e963203cda47af2c6032db6e5689c37aaaf495b1e4fa970207"; } 174 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/te/firefox-47.0.1.tar.bz2"; locale = "te"; arch = "linux-x86_64"; sha512 = "d491acd4635ab9b22f76531740c7ee7a85832678aef9ed646e75f56755c02538440adeea71e9ca5a7a5e11f3f2f6941c3c4c1e47380547179f63baaf6c20ad07"; } 175 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/th/firefox-47.0.1.tar.bz2"; locale = "th"; arch = "linux-i686"; sha512 = "0414f74c6266fc204f2741b6860f7919c957364bd56ccc2cec5ef4b9c4be812c554ab584e6ce53387e6b7a18ad02991a44d9507a16da59a4aabfd44e7fb5b754"; } 176 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/th/firefox-47.0.1.tar.bz2"; locale = "th"; arch = "linux-x86_64"; sha512 = "2952cceaecdd4013882150e8158607639e4ab2cffdef563d4fd1a015c41f1eff6c5ac22c0b9301a05ab6f9fef9659d54916275d5a50d97ad43bf69f10da7b3c8"; } 177 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/tr/firefox-47.0.1.tar.bz2"; locale = "tr"; arch = "linux-i686"; sha512 = "c5c6273bae2b9a46108a433af3a85b5cbbba4cd3154ee124ccc49f46c4a76264836a76d1b2da4b1064e9a913cc9fe461911c53e44f40343c5f780be04da932e5"; } 178 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/tr/firefox-47.0.1.tar.bz2"; locale = "tr"; arch = "linux-x86_64"; sha512 = "f0b5bef1ea4b948d699a79d902055d5b31afbe5c4f1814d98cadef1ca820ce39212ec009f68d875860a48942e9d797bda88eec4f6ed591dd8b3b260e04170974"; } 179 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/uk/firefox-47.0.1.tar.bz2"; locale = "uk"; arch = "linux-i686"; sha512 = "3a069ba914716ce122c4a89612988708d811b9350d333aab203dde212527c0e0cc86ec4781e6aa23f40b77f2266f76eca366cf355651870f43e180b97aa25c43"; } 180 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/uk/firefox-47.0.1.tar.bz2"; locale = "uk"; arch = "linux-x86_64"; sha512 = "db7931aa3f1d150e4b5b8c87b9d069df4a515fb2aa5e250b8f8a1bae0d8fd9a210ae949df056c47e3c88e8faf28f2571311ce2d6f179e3365720b42f1335b546"; } 181 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/uz/firefox-47.0.1.tar.bz2"; locale = "uz"; arch = "linux-i686"; sha512 = "110a82749e187f39d77f63b16ad515218e5512e5974916e4145e625a40d797e23fdbb5d110a23f061448cfc3d3c597858636c9304e941a34c68368f749c3c900"; } 182 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/uz/firefox-47.0.1.tar.bz2"; locale = "uz"; arch = "linux-x86_64"; sha512 = "1dbf94cef034449e8d1342822384bf1761dc61748e2d876aec1ac628dd161f92b62da832fe397b2fe4f8a1b82f9adf1c3690f26e07ee3e48c6299f95969533cf"; } 183 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/vi/firefox-47.0.1.tar.bz2"; locale = "vi"; arch = "linux-i686"; sha512 = "af97e1dcfc9bfbdce95a5cd35025b2540ad928d3238863471116e071a51b354b7818577bc3e7427c513e7b335bc1510605ba3ad1a37221389de7c7fedf6e2103"; } 184 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/vi/firefox-47.0.1.tar.bz2"; locale = "vi"; arch = "linux-x86_64"; sha512 = "cc938935395e66ef721fdbb8c8b781ef648b5419393ed1687a116a4d9ae12dd18f2edbc8287235504aa6782bbd6a41f9f5dd89c9c712ed4980fb9fa44f46ef38"; } 185 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/xh/firefox-47.0.1.tar.bz2"; locale = "xh"; arch = "linux-i686"; sha512 = "a76dbac054cdb7f5c194766dc54f215de4cb4cca4aacd7c883e0e3632b9dfc18cc25d7a54788e213bc65c894dd26ca9b863199b55b649133f93da9fed9a58fe4"; } 186 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/xh/firefox-47.0.1.tar.bz2"; locale = "xh"; arch = "linux-x86_64"; sha512 = "cfd8bbb81637c19464ec34788254740e999c13bc8a64b4289b0e1c64f76d711a5a5a8380995271f309444032739066f06334da2f81b6ca2b2be33ff55d3ff402"; } 187 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/zh-CN/firefox-47.0.1.tar.bz2"; locale = "zh-CN"; arch = "linux-i686"; sha512 = "d11637b0c28aa1c45b315322ff12392e133aebe21f435564da278b9e301f0c8515ccb721df2bd55c175c48c3e24934837abbba4b84c9fa659b7a58db1da68f04"; } 188 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/zh-CN/firefox-47.0.1.tar.bz2"; locale = "zh-CN"; arch = "linux-x86_64"; sha512 = "27a06d87f23eaeec170d1ea7f3df636198bfd4787001e178948fe9b8a3f1aafff3be59b9d01ed5b5851902b550601f061e923a4cda3a972f0ac68928cab28577"; } 189 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-i686/zh-TW/firefox-47.0.1.tar.bz2"; locale = "zh-TW"; arch = "linux-i686"; sha512 = "7c6ef5592b273749ccbf7b37c09984b11722beb7f49d4ed25555b84f0521e0dbac5197c7642ac508a21a1a40c5578dcfb49310858819875cc9407c85426d599a"; } 190 - { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/47.0.1/linux-x86_64/zh-TW/firefox-47.0.1.tar.bz2"; locale = "zh-TW"; arch = "linux-x86_64"; sha512 = "9ccce84a292144f3758190ff2858c077d1e7ec6d49ff5e1efb404b8dfb3bcfebf96eab15d0ec32325e4d96d94f4c6bcc67f4e43dd22af418b822d82a2afaf6f1"; } 191 ]; 192 }
··· 4 # ruby generate_sources.rb 46.0.1 > sources.nix 5 6 { 7 + version = "48.0"; 8 sources = [ 9 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/ach/firefox-48.0.tar.bz2"; locale = "ach"; arch = "linux-i686"; sha512 = "57ecf646fdb81b48be76e79d9ca514d2d1bdf76cc5e577545be6bafce466938e14a508819e69e1a28905a278ccf48c2f958f8e404f312f90e63cbe9317b39314"; } 10 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/ach/firefox-48.0.tar.bz2"; locale = "ach"; arch = "linux-x86_64"; sha512 = "ebb5273a458eeb62a48575ece8c1c20f760ff0c015073e13d4103d3f2d9db5ffa085df6e59b6a651c39a743852ec0fff4455e9d9cc8c0dcff1554a948726de47"; } 11 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/af/firefox-48.0.tar.bz2"; locale = "af"; arch = "linux-i686"; sha512 = "efbd8aa1118a76d37e79970928c622f382eacb10441fce578ad0d782e7c900b22c197f1b70057c1142fe7c7eaf4bdffb7af9f9662e9cf7b32123a332278c5be8"; } 12 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/af/firefox-48.0.tar.bz2"; locale = "af"; arch = "linux-x86_64"; sha512 = "ee623538bf68b42961fa921d03b69181ed901f55fb853bf435afc5de7942ffde3bc4bb70a4baaa613b7d679002be2e11f3405eeabf2a0d8cf9338c4a4354e841"; } 13 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/an/firefox-48.0.tar.bz2"; locale = "an"; arch = "linux-i686"; sha512 = "73591c7ce176834de04c8d8ed45239502199b3b34b0884dc87a56580e8548de2e0c3b2a9cb7d03c463ee6022bd3c2c8e08cb40697ecbf1368e276658f3fe3d68"; } 14 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/an/firefox-48.0.tar.bz2"; locale = "an"; arch = "linux-x86_64"; sha512 = "489d88b99ff4adc9edb919f5cefca944577391d19c9b10797d7447db5468a43e143234bdfc884c8d98c4ac715b8c29388aebc9efe3e79ec68694e33ff1f21987"; } 15 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/ar/firefox-48.0.tar.bz2"; locale = "ar"; arch = "linux-i686"; sha512 = "606bb3823834020e6110ef2cae2732ba8e4b2a3f38450a38ed23355d0f16dba7c98ef29df8b6fb6e76fd12e99b4ee97dc066cf74b3156e99af7c0929d9b2af0f"; } 16 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/ar/firefox-48.0.tar.bz2"; locale = "ar"; arch = "linux-x86_64"; sha512 = "af7970892dba0afb677c478ee296cd4ddb75064f229d13f74f6102d45ab7af819d911eafc84cd4351e3eb50bc47e69ac7a3c204b7e96cbb946fc13f46fc1a4af"; } 17 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/as/firefox-48.0.tar.bz2"; locale = "as"; arch = "linux-i686"; sha512 = "cfd631ca2893eee802a9bc82dee3d8d348fe48010080fc82521dc61a6efe1271513f0f1b9a0cf2866050fb1ba3d41ee9a7ad7283b3e669bf8537d8cb38bfbbc2"; } 18 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/as/firefox-48.0.tar.bz2"; locale = "as"; arch = "linux-x86_64"; sha512 = "ff94b9f687da69ca541f03e720dab47dc805e2ae86ab297615195302cfdef13bff294bd9f0a3bc802cca9f855e83c6f346833847d7dddcd4f1cc19404dabd752"; } 19 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/ast/firefox-48.0.tar.bz2"; locale = "ast"; arch = "linux-i686"; sha512 = "3ec1c5a9c73cca3d637cd6045a1110c729cd1ee83d5b4e7452ba45cfb0e01cdc1f87bca870ca0af595769607154364bc03bf88ab99067f1c1be82fd8584a439c"; } 20 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/ast/firefox-48.0.tar.bz2"; locale = "ast"; arch = "linux-x86_64"; sha512 = "84a6961c164cb6279ecfda6bf07f81ee40fe59636bcda0970bb20880d0337447fbc7fe12699627d3544b9f748426c3bf5b9ac2168ad9951c5a04a63a54acfc73"; } 21 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/az/firefox-48.0.tar.bz2"; locale = "az"; arch = "linux-i686"; sha512 = "95b2228952c52d1daf5d34813fc9ab83261899e8f43208b06146c44cf969167c63f71cb1846386d2d657cfcd283c398ee3363a28e0b8febee1d7704c392b6064"; } 22 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/az/firefox-48.0.tar.bz2"; locale = "az"; arch = "linux-x86_64"; sha512 = "d87b848645c779a1ce5c989a95dcf9a4ebdf305aaec5cd16ecded438a5f0a0e69ef1d6285a4c9fc9f2c9da0bbb26e2b79c24bd27b1d3a1b3df4ba18e2de4b465"; } 23 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/be/firefox-48.0.tar.bz2"; locale = "be"; arch = "linux-i686"; sha512 = "9dbf3497d52dd7e4260aee089fa77d888db7f97f6512c53a410a7440683e58759686f543ca5052c8a1fbd6372c924e83800299fa0e9454c74ff4a03cf29e8fca"; } 24 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/be/firefox-48.0.tar.bz2"; locale = "be"; arch = "linux-x86_64"; sha512 = "a9fdc05f4cc123dfe672cf8b31cd47f2b25f0f1685d09839a0e86709994e31851ad78bae36f6156f273cb8e94c01319be08bfd4e5ee931a88ddbe40b06336b63"; } 25 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/bg/firefox-48.0.tar.bz2"; locale = "bg"; arch = "linux-i686"; sha512 = "46df725d41d0229af74205e3e0afa16b89841a0161902cbdf69faa065067db387fe6480ca80e10d3f805c98301d576e279b3405313bf10146a78085b2c05dd7c"; } 26 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/bg/firefox-48.0.tar.bz2"; locale = "bg"; arch = "linux-x86_64"; sha512 = "fbe69e3b48f7c7baba07b23fce7cf266258851427b2bbf8c21b7a870177a499574ae937ce88270abebe3030a289bce236ab1d4f806a223a309e9ced9d5549de8"; } 27 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/bn-BD/firefox-48.0.tar.bz2"; locale = "bn-BD"; arch = "linux-i686"; sha512 = "c82e3f2192be0e8aca9f0cdd8eb06e7c8b193c151c4ae52a5ffa1908c62382de9938ca97da44d10cdcb8dd98bb17362887811df41496a389c49e20dc42229f96"; } 28 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/bn-BD/firefox-48.0.tar.bz2"; locale = "bn-BD"; arch = "linux-x86_64"; sha512 = "14dc923c5db1b49a1ca98eda1e45d5978f7a0e034bb26462da25ab7b160303f3f546e4aaeac3b712fa1a7dc8c70433ad09d11ab7493234bf5bd1ef73eede930f"; } 29 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/bn-IN/firefox-48.0.tar.bz2"; locale = "bn-IN"; arch = "linux-i686"; sha512 = "9e86a9dcbfd1516a134670f17c2734c9624daeb28a0eebb9e81f40f7a1f49ef8d7b9ecbe501beac1e5cd895502cebeae0dde9dfcb91758b5dba5ee42cc061cc4"; } 30 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/bn-IN/firefox-48.0.tar.bz2"; locale = "bn-IN"; arch = "linux-x86_64"; sha512 = "4cee2c673cd4dc14c33849e93c0bd2aead14c631940aee255fd75391b5588610cdd79c71e85264981d44e06892d1ec99bd484e72e7e56d207db9911cc5f3dcba"; } 31 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/br/firefox-48.0.tar.bz2"; locale = "br"; arch = "linux-i686"; sha512 = "5f420addb318b9c5fa11ca83f837758b49e2358448347cbfc13b2cf644f4f5bafebadfbebe5522d790d5a03d4c35406bb49268e40d62161288f0592235c0aa6c"; } 32 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/br/firefox-48.0.tar.bz2"; locale = "br"; arch = "linux-x86_64"; sha512 = "0dc0bec866a3d4471e3b1928a9bb32549bfe09b9c77d28406cc8f8c9e5d6064581c148701e4e650b28e1b95ba6db85c27de7625ddd39caf1b92e2d6d1a357889"; } 33 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/bs/firefox-48.0.tar.bz2"; locale = "bs"; arch = "linux-i686"; sha512 = "0e2563650a9cf9ed48928e49c2cd9aa9c295106ae5147a2ec87e5fbf28acf303da071e9f586315159db72e93cb7611a3eb8607da1dcda9c2645b9af19faaec31"; } 34 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/bs/firefox-48.0.tar.bz2"; locale = "bs"; arch = "linux-x86_64"; sha512 = "4324112ba0112db3dddd7cec05ae3965a7b656f7e0e05e28a00b127dc0885814064219c1c2f9bce9dce0a0237a4f0def79d6cdc15a8f46c23efde1c34b89cc91"; } 35 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/ca/firefox-48.0.tar.bz2"; locale = "ca"; arch = "linux-i686"; sha512 = "3977d2c8b5a05659f5c160e2ea1a25729ce4565821a67d4da9649fd57c1451f1b136a147faaf9987c719518028dc2be14df1edbef083220c9de40a377612f9f8"; } 36 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/ca/firefox-48.0.tar.bz2"; locale = "ca"; arch = "linux-x86_64"; sha512 = "e9a3ad240e7d6fbcf7b54e350c297b40cb224e75390919c737b2380c5af7ddc93834469ee5dc4c93115fda44ee97b21d01b002f35f69630dc667fba8333620bc"; } 37 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/cak/firefox-48.0.tar.bz2"; locale = "cak"; arch = "linux-i686"; sha512 = "ab7b9d41f3686ae77c72c332e04775785741a2b81a3a8b8ca2059dae3a27aad26585a59d99e5c99486d75b7c8c5571a5c9524ec142e7f75f29ecc34c824d5d92"; } 38 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/cak/firefox-48.0.tar.bz2"; locale = "cak"; arch = "linux-x86_64"; sha512 = "be80d95ebfa0d79869257a788aa59cc88849bfe14ccd148bb46caa6db32046a62ffd17d36c6451caa0b4f500153e7f607616f4313fb42c0576e669bacc6b117c"; } 39 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/cs/firefox-48.0.tar.bz2"; locale = "cs"; arch = "linux-i686"; sha512 = "8c0873fcea5ff7aa6f0a78fb6cbe59f7514ad5b0e64ac0d10f03cf3747ef3b6b1cfce01d12f0e11d5f3ed7a7b248e0dd5250850edd4a3a8c8d5f692b6fdc9d75"; } 40 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/cs/firefox-48.0.tar.bz2"; locale = "cs"; arch = "linux-x86_64"; sha512 = "fe5d78ce15f041ab006f5d3b445deb26acd2c5e5d079f6789a0e5f56c2d9077b43595f1dddea3b03d4d7a2fc5565b5da4cc8d138b541d88a31475eb5ce219d68"; } 41 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/cy/firefox-48.0.tar.bz2"; locale = "cy"; arch = "linux-i686"; sha512 = "0c66565a03806c33ecb92c9c7106122283213b5b5cd171b93337a14d446cf0d4d36d298680d286d57c4f09f532f5794a67a426ff7e2d7044c65800d1a6e2ef81"; } 42 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/cy/firefox-48.0.tar.bz2"; locale = "cy"; arch = "linux-x86_64"; sha512 = "2c52f2e204a86afe6f1016fde6aa13cd6b34fc22f7a1943e81b7e6ec0e2136c51156b57bbf12a1cee95aad66d415356cbbd47c2aa94d944672169526b8f1bd94"; } 43 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/da/firefox-48.0.tar.bz2"; locale = "da"; arch = "linux-i686"; sha512 = "fc0e9ba7db425e4a209022487f796f646ba82e4ba9e06153f094037ccb4a959b6fe2ceeadee96b906eb0cb8eab72e34b29f6d024cf34d93cf4e54dc16fccef9c"; } 44 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/da/firefox-48.0.tar.bz2"; locale = "da"; arch = "linux-x86_64"; sha512 = "a6a4c67f9bfe80ff83f99e459c49c58635739da0967f9e8bb1a37568084c4c2f83057e0daa969d6fb844d93994107ea29982f515217a18e79ac8b04c766a0fd0"; } 45 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/de/firefox-48.0.tar.bz2"; locale = "de"; arch = "linux-i686"; sha512 = "40f912539b1bbaf1291270b109d455de1f080a68490950fc9acfb675179d37e75d3cd09cc25ed01bd9f0d970b6d988caaf7d3510a00bbe696139e68dda1aea25"; } 46 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/de/firefox-48.0.tar.bz2"; locale = "de"; arch = "linux-x86_64"; sha512 = "b41cbe809060c2fbaf19688f450532ef71f8d7d995e382aedeaf394b00742d8256aca9560f069f60efe7dfb24d05f884fd7160e3cfa9a15437124b8c4de38786"; } 47 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/dsb/firefox-48.0.tar.bz2"; locale = "dsb"; arch = "linux-i686"; sha512 = "cbbfedfe185cced2644ed6aa34ae754f7c79a18fae8e6b2846d7a1a9b3b141f95def6d7b9c2b2c8b58c0b1e777d36291164866dbf43e93e3ffc8c1e319aa3ca6"; } 48 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/dsb/firefox-48.0.tar.bz2"; locale = "dsb"; arch = "linux-x86_64"; sha512 = "dbef6f6acd1e5cff574e9f456fe0d7ab3c2982d90c15ffcc1195e693357849ffe01091b2be997203d56a580774bba71334635c1f5a0aed57ebb7f7ca6c95b879"; } 49 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/el/firefox-48.0.tar.bz2"; locale = "el"; arch = "linux-i686"; sha512 = "7cd345924f3113d22c338d1bde94c9ec3157531c38aebee0048e81258fe60e600b11449e1db78fca15073636c2fdd120e90f12c3eee461a43718c8de0e89e646"; } 50 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/el/firefox-48.0.tar.bz2"; locale = "el"; arch = "linux-x86_64"; sha512 = "47a500294df276b752d6728b47dff65aa34cfd87ec861d55357ddcf2386e53c646c24ab7e29f70e547986ac6311b2961bcd245a51333c5c4d46912d0bf84547c"; } 51 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/en-GB/firefox-48.0.tar.bz2"; locale = "en-GB"; arch = "linux-i686"; sha512 = "2ee0c7b3653c18a4c26cb78e6b579e0f22cba9dd0a6d54dc0028df6635a9ac912eb8c8958af5ffb4e572ae45b54891a19efd7f6efb407027130a3e444e435968"; } 52 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/en-GB/firefox-48.0.tar.bz2"; locale = "en-GB"; arch = "linux-x86_64"; sha512 = "8ea361476983e9677ad6d9b5c833f114566c528b72158d18664ee66dfe5c00bbcec1ab8c5b1293755348282b4e86ba3f033a86aad3ce943a695ace06a43bd252"; } 53 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/en-US/firefox-48.0.tar.bz2"; locale = "en-US"; arch = "linux-i686"; sha512 = "b7d35e0664012ed45e8256bde69ce6c64a984160185082e3caea8762bf81adde8eb9caa9b4b83ba79083217fb202642face8c660623a87002bd61bbf9092ff7a"; } 54 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/en-US/firefox-48.0.tar.bz2"; locale = "en-US"; arch = "linux-x86_64"; sha512 = "1c66c802af9ca1a665074ebbde5ee349b14cbe5a7e911f42c71334ebd15fadfacd33759b8bac92f56b117a66661c7602aa7c5bcd21e1e186f6d669d5d7957bc8"; } 55 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/en-ZA/firefox-48.0.tar.bz2"; locale = "en-ZA"; arch = "linux-i686"; sha512 = "2db66b79129bff445e9a5fb6ae982453b5fc2b18f3c9b017afb739ec774465f098e11ef02b8d00049a5ca3289acd117bc076d578934a215626f246efdf41c6d3"; } 56 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/en-ZA/firefox-48.0.tar.bz2"; locale = "en-ZA"; arch = "linux-x86_64"; sha512 = "1473001924b17825893f0e0d9a65bff0be03369e6b07e9ad51a2d0c6afb4c4faeece06aadd53ffaa941de364c54708c483a21088a4c6afaffa24291ac97c679c"; } 57 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/eo/firefox-48.0.tar.bz2"; locale = "eo"; arch = "linux-i686"; sha512 = "64b8b4e1bd0afcde46fc431ebc7579813b16554ac5a55b06835eb58b317b93590d34a3925195d4cd93aee04c3c86c99242a9a4454572141100c4873f1ee9d2a7"; } 58 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/eo/firefox-48.0.tar.bz2"; locale = "eo"; arch = "linux-x86_64"; sha512 = "414f7411db27fe462d030e937d0549a35f735747b736b713192887947f0492734ff2bdd1654706e9eda15410b2b240f3d747f3c8905a31ad5c72a73b621ef0c2"; } 59 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/es-AR/firefox-48.0.tar.bz2"; locale = "es-AR"; arch = "linux-i686"; sha512 = "f25942436f05c0a1029a5f9921e9cc7a0d0a40c57a0742207c336e73ca382b881319c67961b240924266650731b806c7f07ff67937d503d8e94e43f2387cf7da"; } 60 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/es-AR/firefox-48.0.tar.bz2"; locale = "es-AR"; arch = "linux-x86_64"; sha512 = "c4ccbaf8741e339bdf0faba2a95d6e481bc10408064248a2b27e447637d53e3f866ee671d61d8d0663b6dab48553b3ab1b0680fa37dfe13ffcb5119fd3996b72"; } 61 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/es-CL/firefox-48.0.tar.bz2"; locale = "es-CL"; arch = "linux-i686"; sha512 = "b77df1944974a2bde0482c0fb2d36f9e3d38d09b5182faf6c008174525fa598f52910547fb1ea7e692968407279dfef9a576e1748e0d6de7382937e4258b7d41"; } 62 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/es-CL/firefox-48.0.tar.bz2"; locale = "es-CL"; arch = "linux-x86_64"; sha512 = "6d62e95696d8ab3a227fd176dfc4555aa37482585d3f575cf6cc62e2573bf0085c2ba3ca64dd597e68ffb0abca9cb8e11bbd6040a7e5df2e2371328a029e298e"; } 63 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/es-ES/firefox-48.0.tar.bz2"; locale = "es-ES"; arch = "linux-i686"; sha512 = "7064370188a13d7918925ca727af1291d009651dd562af17e461cccc59f5f62df6a29f3919be847f968004421ebcdbc0ab67b32d994079b55528894733e1079b"; } 64 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/es-ES/firefox-48.0.tar.bz2"; locale = "es-ES"; arch = "linux-x86_64"; sha512 = "7562fc8cf2e8a80c59ce3893b01fe56b62ed81ccc04703a6e1d8da372e15198626a16378697e71079ecb129bef9ea70eebcfca1da8a8b4567ee96e9fdc8ac83a"; } 65 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/es-MX/firefox-48.0.tar.bz2"; locale = "es-MX"; arch = "linux-i686"; sha512 = "cdc43dae9bb8cb5e7e5816fde84ec6a4ca072bf3e594dc3cc0f77bc4fd2cb3a28bd5950dbfe2d1864ffd313f304beb5c1173f53e560fd4ededdc249e276f0dd1"; } 66 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/es-MX/firefox-48.0.tar.bz2"; locale = "es-MX"; arch = "linux-x86_64"; sha512 = "d0a118ea015d709191ac654a22806186a3e62ee540c6efceb6a05d9cfa8fee9a611d2f3f19430988ade7a77ea02fe62383574d41b18c4a8d2925a5c09b65a1c4"; } 67 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/et/firefox-48.0.tar.bz2"; locale = "et"; arch = "linux-i686"; sha512 = "3218dc25082bb1e6047445542e902934346c104843ef10efaed5c283372734662737829a3edc7ba7025558566b7b0e4485f02ecd24802c781bb8037f92478deb"; } 68 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/et/firefox-48.0.tar.bz2"; locale = "et"; arch = "linux-x86_64"; sha512 = "81c14a517b59dcba904950559ba6388c75fc39bc498dae4106dee555a3f1d737f9a258327f3130c85dc6c6b52e17b741056b4095dae7cc8cf8dd612965ad7f99"; } 69 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/eu/firefox-48.0.tar.bz2"; locale = "eu"; arch = "linux-i686"; sha512 = "31c0c182f84468aa15b03410b1cdfbba35b7e74474d506e9bc32168941e210e93fe441de9df77e48fe9996c77d45255a513e6acfb733e179fbbda0a75318b7a7"; } 70 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/eu/firefox-48.0.tar.bz2"; locale = "eu"; arch = "linux-x86_64"; sha512 = "5bf898af06d2b9fd6be194adf4453f8c271cd2c2d3b166e788427d4edc45f814787265956120619a5347df7c2fb5a7002954eb70d9745143e540055a7105a05e"; } 71 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/fa/firefox-48.0.tar.bz2"; locale = "fa"; arch = "linux-i686"; sha512 = "53a86ce6b5a0312b1380fc17bf7eaa879f266307934bfc46cfa18bd385021f875fa306836a796ed2777271758f2a0201b385ba8aaef076e6a54c94cf24fe03bf"; } 72 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/fa/firefox-48.0.tar.bz2"; locale = "fa"; arch = "linux-x86_64"; sha512 = "a5a961f0a93be6fcbdd7fcfdf356b937b946974a96876ac9cc1e9ff60f54a4f61634d4c4b9cce5b979d4fa1b6084f4f68b2265f503c70fa1b3a5f4392ee0e3d5"; } 73 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/ff/firefox-48.0.tar.bz2"; locale = "ff"; arch = "linux-i686"; sha512 = "4b2dd232f326efd720fce08a91222476cf10f33b90ecc9b43cba715ede44b3d00dbf05cb54616db4a32bcfa8c5b593e2981a69454a015e8e9baad927ad5162d9"; } 74 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/ff/firefox-48.0.tar.bz2"; locale = "ff"; arch = "linux-x86_64"; sha512 = "23d4b17bddfb62f947a4b07eed55dfbe13232f98d0197e5ce06bd6e53758f3af172e878f47031a1b0a551b68bbc0cb684e614f8b217523a1b7d7485da8df4a57"; } 75 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/fi/firefox-48.0.tar.bz2"; locale = "fi"; arch = "linux-i686"; sha512 = "d68b48a97fbc3bfa00cca45ec48bc08f0c736c1d4ca04cddb9519d5fbeeadf88da1602750e4d58c46e258eeb83e32e740f539f556776ab05f01f6ddd2fb2630d"; } 76 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/fi/firefox-48.0.tar.bz2"; locale = "fi"; arch = "linux-x86_64"; sha512 = "1ad0df0c9f4c3c6e179c5df2fc982fdb8878038fe85f622042613f80a4556d8791d82569ed8ee03237936564987b3a21e2f8e9d2dc40c676ffbae2aecb93f032"; } 77 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/fr/firefox-48.0.tar.bz2"; locale = "fr"; arch = "linux-i686"; sha512 = "725abc4ab51cdf3be84958de058350341a8d27a484ff3d2a021dfee018b1419f560c8920f18b6d6d592bac82b89556a662d244e492634248c970a3630e4fea8b"; } 78 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/fr/firefox-48.0.tar.bz2"; locale = "fr"; arch = "linux-x86_64"; sha512 = "076a780821a4de51d38a51254c5f53c91545f48b72ab8b869500cd1afae7d113329889c75766de3061cd423f28917c3125991a36bf97c515b1bc473aa89dc7f2"; } 79 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/fy-NL/firefox-48.0.tar.bz2"; locale = "fy-NL"; arch = "linux-i686"; sha512 = "bae1c596a488af768865942129e906adec9fab6c79be6f9b09a21a8dc5db7d36f38299fb19126b03d9158618d9cff62fa2143fe524aa068ca58f51af223a7104"; } 80 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/fy-NL/firefox-48.0.tar.bz2"; locale = "fy-NL"; arch = "linux-x86_64"; sha512 = "077be175984e50d5ba64b62576c9632a6c9924af99e330eb029ad8a6bc9d2c54f5d505771b0d8fcd1aeccea35624b50318eaf921b34b8e86cde592ab3bc4a449"; } 81 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/ga-IE/firefox-48.0.tar.bz2"; locale = "ga-IE"; arch = "linux-i686"; sha512 = "861f9e61f9c355628fd923d1167e4db71697526ea87c5280cc976056e27505401b407e3348294177cd77204fdd43ee6497c8fcf89ec7e9215a09acaeb3d6d328"; } 82 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/ga-IE/firefox-48.0.tar.bz2"; locale = "ga-IE"; arch = "linux-x86_64"; sha512 = "2d945375532a35b53f8416129010d6cd7d2c3bbba0fd44dd647a61ada38637b044daaf51189de4c7e04c440254c4fba88aba97fb20d2ee4ad5bc55e1ce61da6d"; } 83 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/gd/firefox-48.0.tar.bz2"; locale = "gd"; arch = "linux-i686"; sha512 = "5a08ccb0b2c3fb9886cac45e69c7641053ef18d652fdd4528f5ef06b9c51e412fae4e6301c078df314de8dccc4ffd87907571906f4df9c382492ef1d94c6d6ef"; } 84 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/gd/firefox-48.0.tar.bz2"; locale = "gd"; arch = "linux-x86_64"; sha512 = "66e643754812be465d3884758d1e2db405486633e08aff79ef7dc142e70183eab1ba357794ffd3920392e0e80c3b9729590e8c4e803c5c030e0aee8a758eac84"; } 85 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/gl/firefox-48.0.tar.bz2"; locale = "gl"; arch = "linux-i686"; sha512 = "3cceaab829a2f80d0b329a4a035b34fe67653ea6637272f2ffc2235d4bcc491096846e927773ec7a9bbd53f987b3c1cee982c7e8c9cf900883e8b15393b36023"; } 86 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/gl/firefox-48.0.tar.bz2"; locale = "gl"; arch = "linux-x86_64"; sha512 = "65a35cf89bdc168cfe1e3f14c1aa799ee0a728c9d4b34e7f6a99bb20a88da872de3df3df6b77094035c6baa4487a3a1583591d60741f125cf14d85ea20b55545"; } 87 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/gn/firefox-48.0.tar.bz2"; locale = "gn"; arch = "linux-i686"; sha512 = "b7164178349bdccbccad6e32fcac29f5c3acb512f3e8e1db57f7c7cbb8e6950ec5e8985779116eafe6b237d39d8ba36b3adeaa70813ff3a3a978618808765740"; } 88 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/gn/firefox-48.0.tar.bz2"; locale = "gn"; arch = "linux-x86_64"; sha512 = "c0526f1aca929a77beec1b54393751d3b985753843239892818da4727e3ccf0d3a94e14114e842c7dcb99d2fa7421f3821e3a9f2aa33c6944d62e27963c4154a"; } 89 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/gu-IN/firefox-48.0.tar.bz2"; locale = "gu-IN"; arch = "linux-i686"; sha512 = "ec0675aee25136317c9e9f861947e3fc8fe3bafacda7169590398ed5abe125b0ee7104bfb56988ea7312039418e356a4255e98735167a3bbc4def7b2f326e9ef"; } 90 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/gu-IN/firefox-48.0.tar.bz2"; locale = "gu-IN"; arch = "linux-x86_64"; sha512 = "4d7b83c829dc8fa4eeac364880b90dae4a9a7d33036c92e72d358b5e235c36ccd6b4cc578f786b6f28ea49b665b0ae611046b5c05ecde8bfa89b0396d43b4791"; } 91 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/he/firefox-48.0.tar.bz2"; locale = "he"; arch = "linux-i686"; sha512 = "5f2bb563531130410e67735146a62dcdd8646e401ad8fd468b1bea56de36e1e1a248d3580c2408b6f30a3cabe58a69d13525413a2b7cdc926722f2434408797c"; } 92 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/he/firefox-48.0.tar.bz2"; locale = "he"; arch = "linux-x86_64"; sha512 = "9958faec273e584efbb438791af10971e0e795c33850000f967b060eb73f898ae73a780b2c6707772a233d2f6aff8d664d4ecd327b959210ceefe5efbc4110a2"; } 93 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/hi-IN/firefox-48.0.tar.bz2"; locale = "hi-IN"; arch = "linux-i686"; sha512 = "48ca543b4d3dec309bd443a9cda5a9f6fffe2d467a665eb08454cee0914387aaff863629cb156ed92d98aa878f804454cf4af6f5bcb04d4d4d1221c4854ec554"; } 94 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/hi-IN/firefox-48.0.tar.bz2"; locale = "hi-IN"; arch = "linux-x86_64"; sha512 = "672ec5bb5154c1edddbf6f0586065482bd8a54c5b8b8bb9678eec1825fa10f5ab9142437b96beef0b865740d6426ae4da9122549df1e242cdfdb2a86abbe9d3e"; } 95 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/hr/firefox-48.0.tar.bz2"; locale = "hr"; arch = "linux-i686"; sha512 = "68dd6692de0d72c41dd058a505c508cf365ec688850be7e87aea7b99164e8e5eb3eea547fa54753c76ff6b8fbede44c73f047cac3f4cee700617da55329a5e84"; } 96 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/hr/firefox-48.0.tar.bz2"; locale = "hr"; arch = "linux-x86_64"; sha512 = "146dd255b89fcb616032d04dbe0d4a4e8b3098cb79758b4adebd45ec83c153832fc332486b3cd11e771284d14e2c0eabd407373abc5466d7ae7a081368ce868d"; } 97 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/hsb/firefox-48.0.tar.bz2"; locale = "hsb"; arch = "linux-i686"; sha512 = "768ea8eb848e26664af47c3b93e6906d2f81a1890b43801f4e00a90be321b9ab66827a082c2f42182532722c913149bb4d1d40af3c9fe0d2ba691447f41552b8"; } 98 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/hsb/firefox-48.0.tar.bz2"; locale = "hsb"; arch = "linux-x86_64"; sha512 = "869997277e071e3eb654479c497792640d836cb96a20c9a1974f9915b616d5bcac8dd635c3a9509b365c62719941b7751a5d87e3874ca095926b7c80596c7cec"; } 99 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/hu/firefox-48.0.tar.bz2"; locale = "hu"; arch = "linux-i686"; sha512 = "9cfe20df539646f445d9edc0bf30b00cff660875bfb334abb6a05658dd420869ca34114d5c5c16c183afdc58dda5075b08a4e93d789c3e3c0d661c4c5a3a58b8"; } 100 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/hu/firefox-48.0.tar.bz2"; locale = "hu"; arch = "linux-x86_64"; sha512 = "f7d5e6802f2389aa62b4448e50468e2fd6eb24cc4044b91f33fe47d83eda14f6b27a2024c7d77be7282d568b177ecb3a563b4123ab9cab6ab6aa275ddab2567b"; } 101 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/hy-AM/firefox-48.0.tar.bz2"; locale = "hy-AM"; arch = "linux-i686"; sha512 = "d449ffe339181ed8fbeeb91074d5a04ef4b81ad92b2203d48c6d7f3a7eda22922f0a946310b1e810b384b4c05fb434fd2067537d9d46561490905468e9fc327f"; } 102 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/hy-AM/firefox-48.0.tar.bz2"; locale = "hy-AM"; arch = "linux-x86_64"; sha512 = "2ea54b459c15782a61fd1b56d66278d2ee76a91bfbaf5fede2ef6adb81255bab7401f587ed33b827d4a04272bbbd222f942e6bb34d8463940cb580ad34c08d10"; } 103 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/id/firefox-48.0.tar.bz2"; locale = "id"; arch = "linux-i686"; sha512 = "5c9f65c9cee48477f778891abd6a943ead2f08e0f66e9270e73e74cb5f2a281b2a061e06c0eba3d134b868d7747d50a0d5a6cd4b4f3cc7690776405f1204140d"; } 104 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/id/firefox-48.0.tar.bz2"; locale = "id"; arch = "linux-x86_64"; sha512 = "67824631456a2f92c073e7a11b4e6bdbd802611a8dec857db264ea85aac63e84d5e34e44a4470796fd7b02afc62912b1d8deac3cf28dad7e11ca5db2c98d7668"; } 105 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/is/firefox-48.0.tar.bz2"; locale = "is"; arch = "linux-i686"; sha512 = "f49a88c16729605553806839645bd85a8ffb82b903fc2a64928319c849ab57edc300ade3d2831ae30a258e601f34b9cd356ccf8886d0ca5444781b9cfd6dbd83"; } 106 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/is/firefox-48.0.tar.bz2"; locale = "is"; arch = "linux-x86_64"; sha512 = "69422bbce98fd6974d3ba6f3f1e88d552381cbe346ce726ab31891f612999bed2a4fa20723bf858736708410e43e4c68962fbaa17f675076cf2720135ddeaebd"; } 107 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/it/firefox-48.0.tar.bz2"; locale = "it"; arch = "linux-i686"; sha512 = "6a421e08e72d29223a8440ebbe6965866a6bfb3b982ebf2012a314b8132bd21823a00e65e974f057df390b874d90a6f6428d01d00fe594c33b57e533b2db2bc5"; } 108 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/it/firefox-48.0.tar.bz2"; locale = "it"; arch = "linux-x86_64"; sha512 = "f321b707772adcb15cadf4c13126cd3e5db40124acb012d2188a0e07ab5b184a9a2b43ee2474146c0d48415f3c160d69a3e82fe19688eb71b225ea70c5531f09"; } 109 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/ja/firefox-48.0.tar.bz2"; locale = "ja"; arch = "linux-i686"; sha512 = "73a8bd6e32c728246ef8f14a916f7012f2b758ef5d154a898fa0975a723e767ea10d5ca0dc2deacb73741ac48ea3b6007bf7e0b5872143162ad46d452dc689fc"; } 110 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/ja/firefox-48.0.tar.bz2"; locale = "ja"; arch = "linux-x86_64"; sha512 = "d61fd9a87e158f27aa82f659d84292a3aefe8df57938b677be94258505259a110d8e3dc051012031f91adb41f34764b759306e362fc1d6be0181588c2301cde6"; } 111 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/kk/firefox-48.0.tar.bz2"; locale = "kk"; arch = "linux-i686"; sha512 = "51ac197ee684f770970a5973289255ef62ebcdbe59ba2197135e326fc0885b5891b7616b3755a6812bee4c23b1e2fbf31f336113cb3da9b6d1bf12bcbee7b2a0"; } 112 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/kk/firefox-48.0.tar.bz2"; locale = "kk"; arch = "linux-x86_64"; sha512 = "e437542b5f4922c35fd0a3c3d8b0199115d12b1cac4db07da46d0e6de7106d6222cfec0d73af481ee7e754486af3a795174a28d8c545360a7602a2b9d2123bbe"; } 113 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/km/firefox-48.0.tar.bz2"; locale = "km"; arch = "linux-i686"; sha512 = "d7dae5e1ca04aebe076c291ce54d7b626109f3e27e1018576cdf09607968b5e6ef4f05c32ea004a5b3cf5f0c297a436f4091ca88a1f7c0891f3da7d2e60d4aaf"; } 114 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/km/firefox-48.0.tar.bz2"; locale = "km"; arch = "linux-x86_64"; sha512 = "49fb1bcf8e56692227afbfab13d7edd31ee5aaaad60f4400ac54d66d4be5acca5b77ab4e18f9476c87086f482c586f607671b065be0196da786e9fa0e4a6b5f2"; } 115 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/kn/firefox-48.0.tar.bz2"; locale = "kn"; arch = "linux-i686"; sha512 = "724ffda3f3b69c6539f07ad55763fc34f61b3fa45b2b141c7d7d7ae1ac421ee8f27226f6d9cbab7bc36a1c2ae246020f9ee8ea894e9262d019cbf8a1c3a391b9"; } 116 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/kn/firefox-48.0.tar.bz2"; locale = "kn"; arch = "linux-x86_64"; sha512 = "ab757a4a3d2c916ea588b6701cce2fc63e44d926138ce6c95dc4138169a0db49205d243361bca045ef01632e6989743330b351e8448b2e2b60d99a308598b0d8"; } 117 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/ko/firefox-48.0.tar.bz2"; locale = "ko"; arch = "linux-i686"; sha512 = "9bcbf38241a52bbf374c0f8c78acfdff5ca2ae773234ae9b5d4e5019f9d499310e329e87c8d8430712f74256fc9f68a3687af4d148fb5998ca61c0b4772e8f8e"; } 118 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/ko/firefox-48.0.tar.bz2"; locale = "ko"; arch = "linux-x86_64"; sha512 = "01f32d8f63a40d3d57b298219d889746fb340f631d62ce14a6d85632c7e9c4c3a2da4c0cc1fb738289040addf2e0d2d2e823581d67928b3c4f82ed9b05aa95fa"; } 119 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/lij/firefox-48.0.tar.bz2"; locale = "lij"; arch = "linux-i686"; sha512 = "3e168e0ed92f982f9215317a7fa8d088abefa5a3820cb7e61f16099f5111b654d199960f2dc23f59816d6b6992703aaa36bfc61316e82ba07b6fec5b6abd77f6"; } 120 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/lij/firefox-48.0.tar.bz2"; locale = "lij"; arch = "linux-x86_64"; sha512 = "a79e2a75c7e94bddb9d44708f68f0462bd9a7d2926c2e9334d6e3d879f083dcc5faf716ac3b0f1acf522f29dc20e44ac28a3c6f7667f7a8402c215fb5da00f1f"; } 121 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/lt/firefox-48.0.tar.bz2"; locale = "lt"; arch = "linux-i686"; sha512 = "22e060b0fdddfafde0ade9d985af9a2fc5097b226104bdd30c8d0c06da7c44a663384893eea67c95363124c91d5e2ff395162d0a504d54ed3ef36656e0de17fc"; } 122 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/lt/firefox-48.0.tar.bz2"; locale = "lt"; arch = "linux-x86_64"; sha512 = "e8648f3e0b4b3b93b936f5b5343ab2fb397cce8f9829108011de0b7332246dcdb904374530a20d40a78e5d1ed264bba7809b79afeb9d71f61a17e963d5b4e03d"; } 123 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/lv/firefox-48.0.tar.bz2"; locale = "lv"; arch = "linux-i686"; sha512 = "133f9da47452b1f444674d02300a20295c67d35d44f722d082c087d78cc2d91bfab1efeb2a9a30e2566b182dcbe64edcfe899aa6bb86d40f4be18ff27e5649d2"; } 124 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/lv/firefox-48.0.tar.bz2"; locale = "lv"; arch = "linux-x86_64"; sha512 = "2a1ba8da43090bbd17eee75d3b08910e5a416c044ddecbe831fd63d8e9fc7a6393ce944ef4e698c008025ce4e489e90c7a26fc90f823d06b59c48a06ac5e9712"; } 125 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/mai/firefox-48.0.tar.bz2"; locale = "mai"; arch = "linux-i686"; sha512 = "66d7f8da81ed7e430633727904b69ef2e9cda8efc51e1335a49c6ca633d16e2f8412ca5eb2c7b4e1c52006c0c2687ab9ff7e6b822ebc5da49db3288419d0804d"; } 126 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/mai/firefox-48.0.tar.bz2"; locale = "mai"; arch = "linux-x86_64"; sha512 = "5f5109907b04a4e1ca195cce93dc1350d2a62a6308ab1f1dbc3c5427765376af02147ec08478af21fae9ee925900d820015727f47eb2654fc54b17ff4eada2a4"; } 127 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/mk/firefox-48.0.tar.bz2"; locale = "mk"; arch = "linux-i686"; sha512 = "50989bd953deddd04da3da12b42c869db68785decc4336ac4f5ed889524ed5630f28b71cef8198e2c5a5194f8bbde825996bcbe636c03609ed835a9a2e21109a"; } 128 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/mk/firefox-48.0.tar.bz2"; locale = "mk"; arch = "linux-x86_64"; sha512 = "8d94075342c67c02974d101d7537b07237662590df31feebdd81b672f09593fcf5b4f306bb5eb083943866872a78a1d02f7669844a0b2746fa9d04487d8e09e9"; } 129 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/ml/firefox-48.0.tar.bz2"; locale = "ml"; arch = "linux-i686"; sha512 = "7176048a887e7847487e82fe3c38d585d05b415be60b7f4ad102e97f6294034da57d4d6094d7c9f0f5edc977133055e2e02819d7ea2b56e80d5c85e8c5f7ac9a"; } 130 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/ml/firefox-48.0.tar.bz2"; locale = "ml"; arch = "linux-x86_64"; sha512 = "ef2db6b3e924fee6210ea1b52fbfdf9087d32a56c7238297f38e1e5ef9e6f6a0b5cb27a741224f8f07540e6c469d231b11c366c10c70d8e9aef9695ca5d50dd3"; } 131 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/mr/firefox-48.0.tar.bz2"; locale = "mr"; arch = "linux-i686"; sha512 = "0500bcf8b6b2ab8abacc73eea7f1c268b4e65f7fc6b86c92eda6a941051c84d1fda4060590e3c8dd6e0e176670cad098efe07389ad42151e3901b121dfb460f5"; } 132 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/mr/firefox-48.0.tar.bz2"; locale = "mr"; arch = "linux-x86_64"; sha512 = "4518cba5968661dffd5bf7b6d0084cf6eee3e4b654ab63af928a6c29ad8a7cf077328f3e52c2331e965939571fa0a8ddbd538c4aedd8edd4f0c213e1104fefa4"; } 133 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/ms/firefox-48.0.tar.bz2"; locale = "ms"; arch = "linux-i686"; sha512 = "8fab40915ddde779e1c3589335c32f3d0054b73052a6659cfd45a733f0a05f05f3ab5d776588514e648848ab75f8d36ee911296b5ea701e8cda40e10a214f0c2"; } 134 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/ms/firefox-48.0.tar.bz2"; locale = "ms"; arch = "linux-x86_64"; sha512 = "94b3fffb74c8113caf423a77ef9f24a93513e08c90e242acd581d4b4fa2e23a4acb1295e1abf67dcf70ae034455c32e19b0e4ddc3f32547eca736fcdace01170"; } 135 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/nb-NO/firefox-48.0.tar.bz2"; locale = "nb-NO"; arch = "linux-i686"; sha512 = "c5d2cdfab387e5f3380be0132ea52768e4d08a5da6f1c8b101920817166d1cdb077a1138e1ea5c2e938975fc2c745e8b0707221cf9cf8c942f45a07d5496674e"; } 136 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/nb-NO/firefox-48.0.tar.bz2"; locale = "nb-NO"; arch = "linux-x86_64"; sha512 = "4ecc38821e83b8170a410dc994738806027806fdf69298b51c0387b234e58ddf74801014da50cf3f7531b793968512ed4d2bc659044b82b65574cef154f99dfe"; } 137 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/nl/firefox-48.0.tar.bz2"; locale = "nl"; arch = "linux-i686"; sha512 = "e5baa58c1f0e92635220f9b07d1bc10b3439461fefe33a03fc85e3535e64ef20c06e2aa2ac7bb3cddcd15ff9c9aa40dec7ac9ee4e7cc11069503287210e745aa"; } 138 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/nl/firefox-48.0.tar.bz2"; locale = "nl"; arch = "linux-x86_64"; sha512 = "ceae5e1b50de221e858d89053f38c5bbc8eac1875136401b0c5188017d3fa35ad73faf2c1f45b6175a30ab0a9b47ed8f3c19f21a3abe1a07e1e6f2a88160cd61"; } 139 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/nn-NO/firefox-48.0.tar.bz2"; locale = "nn-NO"; arch = "linux-i686"; sha512 = "89bcd86969fe09cd86a2694a4d93abaa32a1b4fe0f74e6d3d1ef66346af86ab77b85fd9c94196835220c2caa1af4bd52d11a9f2394a1c9347d6ddd72d93f43a7"; } 140 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/nn-NO/firefox-48.0.tar.bz2"; locale = "nn-NO"; arch = "linux-x86_64"; sha512 = "0e9d74c2c4d05740c19dbfe660c9bf116a3f328c5e35b85dcf317f1a77b52d224bfd84e4a82718bbf44323dfdad4ed6955c7b18f2b6000cd6af47abeb4b93cb2"; } 141 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/or/firefox-48.0.tar.bz2"; locale = "or"; arch = "linux-i686"; sha512 = "3e797ba54bdb312d468dbc528eb23bc8b40489b061d8597262fd5a8b4689ee814ece54373dc823e378d73abc1caae9af2c8adc0a7d3df8673e486fd5f31084d9"; } 142 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/or/firefox-48.0.tar.bz2"; locale = "or"; arch = "linux-x86_64"; sha512 = "c7abba3faefca9ea4ec6241444894d935611b5b855be58f52671e7ffecff1c29fb59854a89e546921ed70d3cb6d3f42808d8dbebf8c0555daad6325131de128e"; } 143 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/pa-IN/firefox-48.0.tar.bz2"; locale = "pa-IN"; arch = "linux-i686"; sha512 = "d8714bd35288aa565afcd493a21c76d1c8485a289008f28ecc7fc5c077f9b779c485648cbb556490db140d5d5791f4041e138b94b5fc9c66980180c9a7e63bc9"; } 144 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/pa-IN/firefox-48.0.tar.bz2"; locale = "pa-IN"; arch = "linux-x86_64"; sha512 = "052e90ea858141bbdbf808c18b9e5b6bfb0f235daac84828c9cc35130c6d8e7324b44b3db7a982ac148dc5349a972796c3274e39f61a944f1d0f580152cccfa3"; } 145 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/pl/firefox-48.0.tar.bz2"; locale = "pl"; arch = "linux-i686"; sha512 = "d45227a3936d522fd44c3526a0d78e8572b392630dc71d1c75de2f89af9f60c1a4b6b8096cd5db308f111a88b7d9da649e353a67f592ced07fbe601a8f2267db"; } 146 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/pl/firefox-48.0.tar.bz2"; locale = "pl"; arch = "linux-x86_64"; sha512 = "90bd5b1fb555942fd5a20e923fb7effcee67e43e413f3581c6cff91e9437fe330bc39eef324a82a68d26fd7d5ffaddd2b7f32e7f8c97784002405c35e0a6a45f"; } 147 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/pt-BR/firefox-48.0.tar.bz2"; locale = "pt-BR"; arch = "linux-i686"; sha512 = "740a6f543e2e93cc83c1bd5285c00bbc7324d443197c38b069ff912d0e9ed13451b77490fcfa85c4507938f538b3fc50729130754bb13e36806d5d03ad6b83ba"; } 148 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/pt-BR/firefox-48.0.tar.bz2"; locale = "pt-BR"; arch = "linux-x86_64"; sha512 = "bd8db956583b18a629b39d02dc6f60e31da287e3e834cb7b2ad9c618e8647877e07637afb8993d5605acb746ee948e8fbed7fe5692fc25a1215c98c8e98b3ca0"; } 149 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/pt-PT/firefox-48.0.tar.bz2"; locale = "pt-PT"; arch = "linux-i686"; sha512 = "452fc407467c3a6a2837543889d0978569e48ef45ab24141450635b5f7b10e7b6b0ceed805783b700a223bfa8f97c9e46cf59236bb89050ce65a33e183b539ac"; } 150 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/pt-PT/firefox-48.0.tar.bz2"; locale = "pt-PT"; arch = "linux-x86_64"; sha512 = "29610bc8fd02d36c7acb018105290d06d625530d2e9e62e52732c553d26b4b38a22319dc1701416b3c0c533a34902e7237322f34c35beb49a6053eb9d7c40c4a"; } 151 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/rm/firefox-48.0.tar.bz2"; locale = "rm"; arch = "linux-i686"; sha512 = "6f267154c8a612ab6026a5b71a4b906ef6bc773e796dce63f7daeffba4196722218f6b2631180069a8820082e72b97796023bde163ac4b1103887b14c8fec57d"; } 152 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/rm/firefox-48.0.tar.bz2"; locale = "rm"; arch = "linux-x86_64"; sha512 = "fbcfa337605725848d9786fd43be6ace0b68eb0e2750ec07707abc40ce4813a3fe77860f71eca714bf2dfd933eef735d16b7623f13affa9073c9c6535c9d1759"; } 153 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/ro/firefox-48.0.tar.bz2"; locale = "ro"; arch = "linux-i686"; sha512 = "e053c7a6e968dd8dabc8e9ca1a92abe1f97ac754c9eb0acf12e80c9f507f63f8b32a322623eac0914d1f640b5ae30abf158f2889e2fc6a2acfc41cd5881b6630"; } 154 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/ro/firefox-48.0.tar.bz2"; locale = "ro"; arch = "linux-x86_64"; sha512 = "4b75367765b4bb2a89b6b0316a824b58a0440749055e30ccf997d129e251fcfd43b3d5453e792fb34c4e675bd4155b61a6d9bb98b8c5e7a5cd574f22637b3c88"; } 155 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/ru/firefox-48.0.tar.bz2"; locale = "ru"; arch = "linux-i686"; sha512 = "4d91d076a6d8241b9209cbb8b5d1ea8f0238197e0a7c151efd03849e56b9ffb825844d67e2810247d524a96c9cb8ba360d07d3dfc71cf548a8db3df428505255"; } 156 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/ru/firefox-48.0.tar.bz2"; locale = "ru"; arch = "linux-x86_64"; sha512 = "dce443a48e515f40862631f5310a56a774c014e21d02ddfda17fb499b7d3bb5260b868e8465d320bc19e8638a79ec63ea9ea70a46bcfb4b08f8fbafb293b614d"; } 157 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/si/firefox-48.0.tar.bz2"; locale = "si"; arch = "linux-i686"; sha512 = "81f99b788a395676f837b2ba1972d1e6eb05eeb6a0b4a40ebf7e79e9bcb82f9399188252f8782ab84fcc021e9e8ef3f8eb95d333166a4ceb205613f7bd105704"; } 158 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/si/firefox-48.0.tar.bz2"; locale = "si"; arch = "linux-x86_64"; sha512 = "6abe3abb6771e8bcf1880e777df1f7517b6c784d320e3ca8ae709befe802adca51ddc5996910c6bf7d570e12bc6e3564872001bcb28a1f0143eddd33be3af9c8"; } 159 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/sk/firefox-48.0.tar.bz2"; locale = "sk"; arch = "linux-i686"; sha512 = "dc6c4bce34a4eae6c9217e116dc558956fd500b3c4ddb8d88a6067c7d6ef746f19901014c1cc3fcb826695519a62aecfa8091eb58f360cfa4c1e65b34df9c2b2"; } 160 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/sk/firefox-48.0.tar.bz2"; locale = "sk"; arch = "linux-x86_64"; sha512 = "56771e20b4148ef16445ebb8f59b87b00eb7aa1d3174beb77eefdc2868a3468e6cc4e811cafddeca8b7b9e5b88b8c75101cb3a78600c17fe0376580d8cc4ad54"; } 161 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/sl/firefox-48.0.tar.bz2"; locale = "sl"; arch = "linux-i686"; sha512 = "737a878720bbf0038145aff1a460debb7065b68a07db5d6ff46234fbb39eb06d0a3d5b6b2b188997259e6e8e41af30b401646b2064e55e7b6ee25cf5c63b3a02"; } 162 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/sl/firefox-48.0.tar.bz2"; locale = "sl"; arch = "linux-x86_64"; sha512 = "a5767047a75bdb5839e9ef55c50adac95c6f6d60bd0e4bbbee531657c4cb37db0e51b82a9db498c3cb151496cb0f2f72126efe45627d0c6c8057a081d2c2be35"; } 163 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/son/firefox-48.0.tar.bz2"; locale = "son"; arch = "linux-i686"; sha512 = "3f9f457096b086e35757594305c446591f33d414b9a056c4869aea05d841d378abd9c36c4ede67d461afd7ad1433ffbc091da45d49df8c98829e6ba303778791"; } 164 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/son/firefox-48.0.tar.bz2"; locale = "son"; arch = "linux-x86_64"; sha512 = "702df22f5564d3ae3db222d6ebf0ba96653233c8596a910a7a599f43021dbaaa2f2911a6c3414f78305ab428877d303bb7e8a42336633c359a1f96918b5ef048"; } 165 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/sq/firefox-48.0.tar.bz2"; locale = "sq"; arch = "linux-i686"; sha512 = "3bfdd90de86a74c5f9dfece1878884ac652a04e3d6bfc9245d40703ff30ca000834cf71333596f5c84e7bbaecd02b0068b4e221aa8515924011afebe82c3018f"; } 166 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/sq/firefox-48.0.tar.bz2"; locale = "sq"; arch = "linux-x86_64"; sha512 = "d1b26f23a8ce2023f4b191b33871ea03ef361d9defd81c9ede4508ac9f8d2902999258bf2975e0f92120aa9109808f5818ad546d059b052327911b854f5a09cd"; } 167 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/sr/firefox-48.0.tar.bz2"; locale = "sr"; arch = "linux-i686"; sha512 = "4834ecae89b424d1152650a1a2f3c1f9f900afff09a713fc9158834bc904fd0063742f47cba7afe05c9c32048ae2a9929dad9485717f759946348c081ef09e4a"; } 168 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/sr/firefox-48.0.tar.bz2"; locale = "sr"; arch = "linux-x86_64"; sha512 = "a625bcf7277694a8ec2bea0a561b581b9fa5062d67c6f5a247f8b1cbf29860838a6d24902208cdee3116b6ef2bd97ff094a7088b45b70ad66f9d638febb12e01"; } 169 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/sv-SE/firefox-48.0.tar.bz2"; locale = "sv-SE"; arch = "linux-i686"; sha512 = "7a4bde2aa79928adc3dcf75f4d1e267e26cae47fa03086aa4586760551b78219a78a22da41144eb402e6efd77830200858d01415d434020da433447119494e68"; } 170 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/sv-SE/firefox-48.0.tar.bz2"; locale = "sv-SE"; arch = "linux-x86_64"; sha512 = "b2de3cee2384b183cff272b1856f3911655346704d768a874d44ae7a78bf2debe3fd006ee5fbcd1f44f3cc0687fd851832231c5c36c317952d5dd9e06d3a9f66"; } 171 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/ta/firefox-48.0.tar.bz2"; locale = "ta"; arch = "linux-i686"; sha512 = "0e7483aadeb8a588075c688de52dc7c9278f3f72b003e10115cf5353d0100e63001691f8e09e5155f0f544e847c3965a3e938b2e4b640a4dbdb9eaa837d5fa1e"; } 172 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/ta/firefox-48.0.tar.bz2"; locale = "ta"; arch = "linux-x86_64"; sha512 = "73bdb7c53dcd17a14ffbdfe34d5053b00d8f1f096869be84a5a2dcd64effe14670081da3ff71fdab8cd636b76ab63fa09f4f03d6da8fee61007eaa2395b1eff0"; } 173 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/te/firefox-48.0.tar.bz2"; locale = "te"; arch = "linux-i686"; sha512 = "35f4e0914262392b491c1379ffc81bc70206965511c54b14fcca3004a67938b0dfcacdb89bf1fb1485e5f43b4bca1b9f0ccb7bc1a7734d55ec9b6e6fea9f7050"; } 174 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/te/firefox-48.0.tar.bz2"; locale = "te"; arch = "linux-x86_64"; sha512 = "2aa1f92a0d3d60e1e9a38fa08b76d951cbedba208f48298cc41dcb52bb60f904fd34bb124b7ad92da672a921df13abf32cf4defc05aed0a714de7b8503d240d9"; } 175 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/th/firefox-48.0.tar.bz2"; locale = "th"; arch = "linux-i686"; sha512 = "b70ced17faae84781ab512e2d84d31204dea6fb074072bd60529f52209135a71d4270d4ad7c21173de9e545e65785d066d453fa16ee28ada39708e256451be2f"; } 176 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/th/firefox-48.0.tar.bz2"; locale = "th"; arch = "linux-x86_64"; sha512 = "91767bda7438695142b9eb16d311ecdc8e884d572775627867a03e85564ca20499f1892cf948dc7daee17fcc39885c811bb37759db406393cbc263dcb8bf95e4"; } 177 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/tr/firefox-48.0.tar.bz2"; locale = "tr"; arch = "linux-i686"; sha512 = "44ffbf4cf5993243ffe6308ff91aa4025020546cee5d446481ae1b9dade1c4f98a726ec9ebed15ecf63437a0039e42265a4d4444dc3560ea42201832c0db03f1"; } 178 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/tr/firefox-48.0.tar.bz2"; locale = "tr"; arch = "linux-x86_64"; sha512 = "48869a5d1c60a43c7bdabe9d55060f6211dbd18e8f4e438cc0245c151f37eea748c3c05c9e9811e522df7bff7a6b531ce1bba062738e95244aa2e0e47fbe9ee2"; } 179 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/uk/firefox-48.0.tar.bz2"; locale = "uk"; arch = "linux-i686"; sha512 = "93a0617b74fd8e19b7289cba78182b56d76e754e55b5e666fe8ad34e7f0b8529d3b5575a1d695f5a8eb19085a2e09d5c223a5663c11e5cb1011700b0ab80ca3e"; } 180 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/uk/firefox-48.0.tar.bz2"; locale = "uk"; arch = "linux-x86_64"; sha512 = "a0cfb64b8ceb111509778c2af0d6846eb2b212db04bef166c74b47c7c85dba51379ad1b4d97f0955c75ef04518742136fc9cf018359465c9faaea082cd379906"; } 181 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/uz/firefox-48.0.tar.bz2"; locale = "uz"; arch = "linux-i686"; sha512 = "9ff52914522dffde0c4f2767daefc4cf8e3f15075cdee1bd63fb8cbdf052c081ccb82cf22091b066d5a4ad1243c7efdc384b972fcad6985b4c0d47de03ec9131"; } 182 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/uz/firefox-48.0.tar.bz2"; locale = "uz"; arch = "linux-x86_64"; sha512 = "85f029d028611d25055ec115eef07b1433c61c0d1c8364c8fb8aaa9ad8d89ea8ac477fdae90a79653a45a47a936397c0f4f758aa2a708ce9b12d2872909f1a01"; } 183 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/vi/firefox-48.0.tar.bz2"; locale = "vi"; arch = "linux-i686"; sha512 = "deb75ecd16deae76ed58caa155234c22e5829c087be9a7a1309a13fab822c524f879aa752b76945a7ff1bb0527006757583180cd7cdcee22dd6430cdf43b3fb5"; } 184 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/vi/firefox-48.0.tar.bz2"; locale = "vi"; arch = "linux-x86_64"; sha512 = "b36d4a40c11c2cd4e0bc92afd4147c2114554f87d852090f94e13854da2b27ad4a1bfee349d8a92993fa40783adbd4203d2e13767734176b47548ea81c365619"; } 185 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/xh/firefox-48.0.tar.bz2"; locale = "xh"; arch = "linux-i686"; sha512 = "8efda5736eaff631c1d8a752fcc58a57c6bb3b9ad10cd2f1803e31c25ccfeaac53b5118ceaac994131b40aefa2822bbffc584f54a9f46bcb31a87d76c9eb7024"; } 186 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/xh/firefox-48.0.tar.bz2"; locale = "xh"; arch = "linux-x86_64"; sha512 = "108ddf05b9552eb25165e093fed70f99fb91f14ba7db17a32c55715da22da702c3cc0d52e1c54ec48b8111e570dff00c88efc2be665ab39f804f733f2778e62d"; } 187 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/zh-CN/firefox-48.0.tar.bz2"; locale = "zh-CN"; arch = "linux-i686"; sha512 = "56bc566490056d46e9adb2a63fe37353eff79f41d7f657d67265045b57394e67578e8dc8485f8500603ec94f6326a2f643d3fd7dbb522912ecbc4571863d804b"; } 188 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/zh-CN/firefox-48.0.tar.bz2"; locale = "zh-CN"; arch = "linux-x86_64"; sha512 = "0da88b26ca2fba192bce4462945f284addd1b660c81baec7e102daad61c18471b4a76a0c4c66dd85e061278dd69e418e999c58bd7c6606426d126ff8ecaf2e3e"; } 189 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-i686/zh-TW/firefox-48.0.tar.bz2"; locale = "zh-TW"; arch = "linux-i686"; sha512 = "1d410032e898d0437cf1ed669fdbafe9103944c35c135240c25a3e56116bdd2d926e3632556fbc916d465287e78ec67bc7204d8147596d0411d10f914fefccd8"; } 190 + { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/48.0/linux-x86_64/zh-TW/firefox-48.0.tar.bz2"; locale = "zh-TW"; arch = "linux-x86_64"; sha512 = "6c39f409eb4b48a5b38dc4d6a82f4d9d82b78ea82af10f338108f0237ecd1075cb9a00d5786b7aa9d83051a994e0a05f59f91f12d2b52953bacfdcfd05411ed0"; } 191 ]; 192 }
+1
pkgs/applications/networking/browsers/lynx/default.nix
··· 26 meta = { 27 homepage = http://lynx.isc.org/; 28 description = "A text-mode web browser"; 29 }; 30 }
··· 26 meta = { 27 homepage = http://lynx.isc.org/; 28 description = "A text-mode web browser"; 29 + platforms = stdenv.lib.platforms.unix; 30 }; 31 }
+4 -1
pkgs/applications/networking/browsers/mozilla-plugins/gmtk/default.nix
··· 9 }; 10 11 buildInputs = [ intltool pkgconfig gtk GConf alsaLib ]; 12 } 13 -
··· 9 }; 10 11 buildInputs = [ intltool pkgconfig gtk GConf alsaLib ]; 12 + 13 + meta = { 14 + platforms = stdenv.lib.platforms.linux; 15 + }; 16 }
+1
pkgs/applications/networking/browsers/mozilla-plugins/mozplugger/default.nix
··· 26 description = "Mozilla plugin for launching external program for handling in-page objects"; 27 homepage = http://mozplugger.mozdev.org/; 28 license = stdenv.lib.licenses.gpl2Plus; 29 }; 30 }
··· 26 description = "Mozilla plugin for launching external program for handling in-page objects"; 27 homepage = http://mozplugger.mozdev.org/; 28 license = stdenv.lib.licenses.gpl2Plus; 29 + platforms = stdenv.lib.platforms.linux; 30 }; 31 }
+2 -2
pkgs/applications/networking/browsers/qutebrowser/default.nix
··· 2 , jinja2, pygments, pyyaml, pypeg2, gst-plugins-base, gst-plugins-good 3 , gst-plugins-bad, gst-libav, wrapGAppsHook, glib_networking, makeQtWrapper }: 4 5 - let version = "0.8.1"; in 6 7 buildPythonApplication rec { 8 name = "qutebrowser-${version}"; ··· 10 11 src = fetchurl { 12 url = "https://github.com/The-Compiler/qutebrowser/releases/download/v${version}/${name}.tar.gz"; 13 - sha256 = "18hj95pgybpavwwnyczh6s94spljfngz684y1jlhqnpbp14pkflh"; 14 }; 15 16 # Needs tox
··· 2 , jinja2, pygments, pyyaml, pypeg2, gst-plugins-base, gst-plugins-good 3 , gst-plugins-bad, gst-libav, wrapGAppsHook, glib_networking, makeQtWrapper }: 4 5 + let version = "0.8.2"; in 6 7 buildPythonApplication rec { 8 name = "qutebrowser-${version}"; ··· 10 11 src = fetchurl { 12 url = "https://github.com/The-Compiler/qutebrowser/releases/download/v${version}/${name}.tar.gz"; 13 + sha256 = "1kfxjdn1dqla8d8gcggp55zcgf4zb77knkfshd213my0iw2yzgcf"; 14 }; 15 16 # Needs tox
+1
pkgs/applications/networking/browsers/w3m/default.nix
··· 70 homepage = http://w3m.sourceforge.net/; 71 description = "A text-mode web browser"; 72 maintainers = [ maintainers.mornfall maintainers.cstrahan ]; 73 }; 74 }
··· 70 homepage = http://w3m.sourceforge.net/; 71 description = "A text-mode web browser"; 72 maintainers = [ maintainers.mornfall maintainers.cstrahan ]; 73 + platforms = stdenv.lib.platforms.unix; 74 }; 75 }
+3 -3
pkgs/applications/networking/cluster/terraform/default.nix
··· 2 3 buildGoPackage rec { 4 name = "terraform-${version}"; 5 - version = "0.6.16"; 6 rev = "v${version}"; 7 8 goPackagePath = "github.com/hashicorp/terraform"; ··· 11 inherit rev; 12 owner = "hashicorp"; 13 repo = "terraform"; 14 - sha256 = "1bg8hn4b31xphyxrc99bpnf7gmq20fxqx1k871nidx132brcsah2"; 15 }; 16 17 postInstall = '' 18 # prefix all the plugins with "terraform-" 19 for i in $bin/bin/*; do 20 - if [[ ! $(basename $i) =~ terraform* ]]; then 21 mv -v $i $bin/bin/terraform-$(basename $i); 22 fi 23 done
··· 2 3 buildGoPackage rec { 4 name = "terraform-${version}"; 5 + version = "0.7.0"; 6 rev = "v${version}"; 7 8 goPackagePath = "github.com/hashicorp/terraform"; ··· 11 inherit rev; 12 owner = "hashicorp"; 13 repo = "terraform"; 14 + sha256 = "0k5d6zph6sq1qg8vi5jmk7apy6v67xn5i7rqjamyr5an7lpxssc9"; 15 }; 16 17 postInstall = '' 18 # prefix all the plugins with "terraform-" 19 for i in $bin/bin/*; do 20 + if [[ $(basename $i) != terraform ]]; then 21 mv -v $i $bin/bin/terraform-$(basename $i); 22 fi 23 done
+1
pkgs/applications/networking/dyndns/cfdyndns/default.nix
··· 26 homepage = https://github.com/colemickens/cfdyndns; 27 license = stdenv.lib.licenses.mit; 28 maintainers = with maintainers; [ colemickens ]; 29 }; 30 }
··· 26 homepage = https://github.com/colemickens/cfdyndns; 27 license = stdenv.lib.licenses.mit; 28 maintainers = with maintainers; [ colemickens ]; 29 + platforms = with platforms; linux; 30 }; 31 }
+1
pkgs/applications/networking/ids/bro/default.nix
··· 19 homepage = http://www.bro.org/; 20 license = licenses.bsd3; 21 maintainers = with maintainers; [ pSub ]; 22 }; 23 }
··· 19 homepage = http://www.bro.org/; 20 license = licenses.bsd3; 21 maintainers = with maintainers; [ pSub ]; 22 + platforms = with platforms; unix; 23 }; 24 }
+1
pkgs/applications/networking/ids/daq/default.nix
··· 18 homepage = http://www.snort.org; 19 maintainers = with stdenv.lib.maintainers; [ aycanirican ]; 20 license = stdenv.lib.licenses.gpl2; 21 }; 22 }
··· 18 homepage = http://www.snort.org; 19 maintainers = with stdenv.lib.maintainers; [ aycanirican ]; 20 license = stdenv.lib.licenses.gpl2; 21 + platforms = with stdenv.lib.platforms; linux; 22 }; 23 }
+1
pkgs/applications/networking/ids/snort/default.nix
··· 25 homepage = http://www.snort.org; 26 maintainers = with stdenv.lib.maintainers; [ aycanirican ]; 27 license = stdenv.lib.licenses.gpl2; 28 }; 29 }
··· 25 homepage = http://www.snort.org; 26 maintainers = with stdenv.lib.maintainers; [ aycanirican ]; 27 license = stdenv.lib.licenses.gpl2; 28 + platforms = with stdenv.lib.platforms; linux; 29 }; 30 }
+1
pkgs/applications/networking/instant-messengers/amsn/default.nix
··· 18 meta = { 19 description = "Instant messaging (MSN Messenger clone)"; 20 homepage = http://amsn-project.net; 21 }; 22 }
··· 18 meta = { 19 description = "Instant messaging (MSN Messenger clone)"; 20 homepage = http://amsn-project.net; 21 + platforms = stdenv.lib.platforms.linux; 22 }; 23 }
+1
pkgs/applications/networking/instant-messengers/bitlbee-facebook/default.nix
··· 23 24 homepage = https://github.com/jgeboski/bitlbee-facebook; 25 license = licenses.gpl2Plus; 26 }; 27 }
··· 23 24 homepage = https://github.com/jgeboski/bitlbee-facebook; 25 license = licenses.gpl2Plus; 26 + platforms = stdenv.lib.platforms.linux; 27 }; 28 }
+1
pkgs/applications/networking/instant-messengers/bitlbee-steam/default.nix
··· 23 24 homepage = https://github.com/jgeboski/bitlbee-steam; 25 license = licenses.gpl2Plus; 26 }; 27 }
··· 23 24 homepage = https://github.com/jgeboski/bitlbee-steam; 25 license = licenses.gpl2Plus; 26 + platforms = stdenv.lib.platforms.linux; 27 }; 28 }
+1
pkgs/applications/networking/instant-messengers/gajim/default.nix
··· 79 maintainers = [ maintainers.raskin maintainers.aszlig ]; 80 downloadPage = "http://gajim.org/downloads.php"; 81 updateWalker = true; 82 }; 83 }
··· 79 maintainers = [ maintainers.raskin maintainers.aszlig ]; 80 downloadPage = "http://gajim.org/downloads.php"; 81 updateWalker = true; 82 + platforms = stdenv.lib.platforms.linux; 83 }; 84 }
+1
pkgs/applications/networking/instant-messengers/mcabber/default.nix
··· 22 description = "Small Jabber console client"; 23 license = licenses.gpl2; 24 maintainers = with maintainers; [ pSub ]; 25 }; 26 }
··· 22 description = "Small Jabber console client"; 23 license = licenses.gpl2; 24 maintainers = with maintainers; [ pSub ]; 25 + platforms = with platforms; linux; 26 }; 27 }
+1
pkgs/applications/networking/instant-messengers/pidgin-plugins/msn-pecan/default.nix
··· 10 meta = { 11 description = "Alternative MSN protocol plug-in for Pidgin IM"; 12 homepage = http://code.google.com/p/msn-pecan/; 13 }; 14 15 makeFlags = "PURPLE_LIBDIR=lib PURPLE_DATADIR=share/data DESTDIR=$$out";
··· 10 meta = { 11 description = "Alternative MSN protocol plug-in for Pidgin IM"; 12 homepage = http://code.google.com/p/msn-pecan/; 13 + platforms = stdenv.lib.platforms.linux; 14 }; 15 16 makeFlags = "PURPLE_LIBDIR=lib PURPLE_DATADIR=share/data DESTDIR=$$out";
+1
pkgs/applications/networking/instant-messengers/pidgin-plugins/pidgin-mra/default.nix
··· 26 homepage = https://github.com/dreadatour/pidgin-mra; 27 description = "Mail.ru Agent plugin for Pidgin / libpurple"; 28 license = stdenv.lib.licenses.gpl2; 29 }; 30 }
··· 26 homepage = https://github.com/dreadatour/pidgin-mra; 27 description = "Mail.ru Agent plugin for Pidgin / libpurple"; 28 license = stdenv.lib.licenses.gpl2; 29 + platforms = stdenv.lib.platforms.linux; 30 }; 31 }
+1
pkgs/applications/networking/instant-messengers/pidgin-plugins/purple-vk-plugin/default.nix
··· 24 homepage = https://bitbucket.org/olegoandreev/purple-vk-plugin; 25 description = "Vk (russian social network) plugin for Pidgin / libpurple"; 26 license = stdenv.lib.licenses.gpl3; 27 }; 28 }
··· 24 homepage = https://bitbucket.org/olegoandreev/purple-vk-plugin; 25 description = "Vk (russian social network) plugin for Pidgin / libpurple"; 26 license = stdenv.lib.licenses.gpl3; 27 + platforms = stdenv.lib.platforms.linux; 28 }; 29 }
+1
pkgs/applications/networking/instant-messengers/pidgin-plugins/skype4pidgin/default.nix
··· 35 homepage = https://github.com/novas0x2a/skype4pidgin; 36 license = stdenv.lib.licenses.gpl3Plus; 37 description = "Plugin to use a running skype account through pidgin"; 38 }; 39 }
··· 35 homepage = https://github.com/novas0x2a/skype4pidgin; 36 license = stdenv.lib.licenses.gpl3Plus; 37 description = "Plugin to use a running skype account through pidgin"; 38 + platforms = stdenv.lib.platforms.linux; 39 }; 40 }
+1
pkgs/applications/networking/instant-messengers/pidgin-plugins/telegram-purple/default.nix
··· 34 description = "Telegram for Pidgin / libpurple"; 35 license = stdenv.lib.licenses.gpl2; 36 maintainers = stdenv.lib.maintainers.jagajaga; 37 }; 38 }
··· 34 description = "Telegram for Pidgin / libpurple"; 35 license = stdenv.lib.licenses.gpl2; 36 maintainers = stdenv.lib.maintainers.jagajaga; 37 + platforms = stdenv.lib.platforms.linux; 38 }; 39 }
+1
pkgs/applications/networking/instant-messengers/pidgin-plugins/tox-prpl/default.nix
··· 24 homepage = http://tox.dhs.org/; 25 description = "Tox plugin for Pidgin / libpurple"; 26 license = stdenv.lib.licenses.gpl3; 27 }; 28 }
··· 24 homepage = http://tox.dhs.org/; 25 description = "Tox plugin for Pidgin / libpurple"; 26 license = stdenv.lib.licenses.gpl3; 27 + platforms = stdenv.lib.platforms.linux; 28 }; 29 }
+1
pkgs/applications/networking/instant-messengers/pybitmessage/default.nix
··· 35 description = "The official Bitmessage client"; 36 license = licenses.mit; 37 maintainers = with maintainers; [ jgillich ]; 38 }; 39 }
··· 35 description = "The official Bitmessage client"; 36 license = licenses.mit; 37 maintainers = with maintainers; [ jgillich ]; 38 + platforms = with platforms; linux; 39 }; 40 }
+1
pkgs/applications/networking/instant-messengers/ricochet/default.nix
··· 52 homepage = "https://ricochet.im"; 53 license = licenses.bsd3; 54 maintainers = [ maintainers.codsl maintainers.jgillich ]; 55 }; 56 }
··· 52 homepage = "https://ricochet.im"; 53 license = licenses.bsd3; 54 maintainers = [ maintainers.codsl maintainers.jgillich ]; 55 + platforms = platforms.linux; 56 }; 57 }
+6 -4
pkgs/applications/networking/instant-messengers/telepathy/salut/default.nix
··· 1 { stdenv, fetchurl, libxslt, glib, libxml2, telepathy_glib, avahi, libsoup 2 - , libuuid, openssl, sqlite, pkgconfigUpstream }: 3 4 stdenv.mkDerivation rec { 5 pname = "telepathy-salut"; ··· 10 sha256 = "13k112vrr3zghzr03pnbqc1id65qvpj0sn0virlbf4dmr2511fbh"; 11 }; 12 13 buildInputs = [ glib libxml2 telepathy_glib avahi libsoup libuuid openssl 14 - sqlite ]; 15 16 nativeBuildInputs = [ libxslt pkgconfigUpstream ]; 17 18 configureFlags = "--disable-avahi-tests"; 19 20 - meta = { 21 description = "Link-local XMPP connection manager for Telepathy"; 22 - platforms = stdenv.lib.platforms.gnu; # Random choice 23 }; 24 }
··· 1 { stdenv, fetchurl, libxslt, glib, libxml2, telepathy_glib, avahi, libsoup 2 + , libuuid, openssl, pcre, sqlite, pkgconfigUpstream }: 3 4 stdenv.mkDerivation rec { 5 pname = "telepathy-salut"; ··· 10 sha256 = "13k112vrr3zghzr03pnbqc1id65qvpj0sn0virlbf4dmr2511fbh"; 11 }; 12 13 + # pcre needed because https://github.com/NixOS/nixpkgs/pull/15046 14 buildInputs = [ glib libxml2 telepathy_glib avahi libsoup libuuid openssl 15 + sqlite pcre ]; 16 17 nativeBuildInputs = [ libxslt pkgconfigUpstream ]; 18 19 configureFlags = "--disable-avahi-tests"; 20 21 + meta = with stdenv.lib; { 22 description = "Link-local XMPP connection manager for Telepathy"; 23 + platforms = platforms.gnu; # Random choice 24 + maintainers = [ maintainers.lethalman ]; 25 }; 26 }
+1
pkgs/applications/networking/iptraf/default.nix
··· 25 homepage = http://iptraf.seul.org/; 26 license = stdenv.lib.licenses.gpl2Plus; 27 description = "Console-based network statistics utility for Linux"; 28 }; 29 }
··· 25 homepage = http://iptraf.seul.org/; 26 license = stdenv.lib.licenses.gpl2Plus; 27 description = "Console-based network statistics utility for Linux"; 28 + platforms = stdenv.lib.platforms.linux; 29 }; 30 }
+1
pkgs/applications/networking/irc/bip/default.nix
··· 43 license = stdenv.lib.licenses.gpl2; 44 downloadPage= "https://projects.duckcorp.org/projects/bip/files"; 45 inherit version; 46 }; 47 }
··· 43 license = stdenv.lib.licenses.gpl2; 44 downloadPage= "https://projects.duckcorp.org/projects/bip/files"; 45 inherit version; 46 + platforms = stdenv.lib.platforms.linux; 47 }; 48 }
+1
pkgs/applications/networking/irc/ii/default.nix
··· 16 homepage = http://tools.suckless.org/ii/; 17 license = stdenv.lib.licenses.mit; 18 description = "Irc it, simple FIFO based irc client"; 19 }; 20 }
··· 16 homepage = http://tools.suckless.org/ii/; 17 license = stdenv.lib.licenses.mit; 18 description = "Irc it, simple FIFO based irc client"; 19 + platforms = stdenv.lib.platforms.unix; 20 }; 21 }
+1
pkgs/applications/networking/irc/irssi/otr/default.nix
··· 25 meta = { 26 homepage = https://github.com/cryptodotis/irssi-otr; 27 license = stdenv.lib.licenses.gpl2Plus; 28 }; 29 }
··· 25 meta = { 26 homepage = https://github.com/cryptodotis/irssi-otr; 27 license = stdenv.lib.licenses.gpl2Plus; 28 + platforms = stdenv.lib.platforms.linux; 29 }; 30 }
+1
pkgs/applications/networking/irc/sic/default.nix
··· 14 description = "Simple IRC client"; 15 homepage = http://tools.suckless.org/sic/; 16 license = stdenv.lib.licenses.mit; 17 }; 18 }
··· 14 description = "Simple IRC client"; 15 homepage = http://tools.suckless.org/sic/; 16 license = stdenv.lib.licenses.mit; 17 + platforms = stdenv.lib.platforms.unix; 18 }; 19 }
+1
pkgs/applications/networking/jmeter/default.nix
··· 23 license = stdenv.lib.licenses.asl20; 24 maintainers = [ stdenv.lib.maintainers.garbas ]; 25 priority = 1; 26 }; 27 }
··· 23 license = stdenv.lib.licenses.asl20; 24 maintainers = [ stdenv.lib.maintainers.garbas ]; 25 priority = 1; 26 + platforms = stdenv.lib.platforms.unix; 27 }; 28 }
+1
pkgs/applications/networking/mailreaders/trojita/default.nix
··· 36 description = "A Qt IMAP e-mail client"; 37 homepage = http://trojita.flaska.net/; 38 license = with lib.licenses; [ gpl2 gpl3 ]; 39 }; 40 41 }
··· 36 description = "A Qt IMAP e-mail client"; 37 homepage = http://trojita.flaska.net/; 38 license = with lib.licenses; [ gpl2 gpl3 ]; 39 + platforms = stdenv.lib.platforms.linux; 40 }; 41 42 }
+4
pkgs/applications/networking/mumble/overlay.nix
··· 21 sed -i "s,/usr/lib,$out/lib,g" $out/bin/mumble-overlay 22 sed -i '2iPATH="${binPath}:$PATH"' $out/bin/mumble-overlay 23 ''; 24 }
··· 21 sed -i "s,/usr/lib,$out/lib,g" $out/bin/mumble-overlay 22 sed -i '2iPATH="${binPath}:$PATH"' $out/bin/mumble-overlay 23 ''; 24 + 25 + meta = { 26 + platforms = stdenv.lib.platforms.linux; 27 + }; 28 }
+1
pkgs/applications/networking/newsreaders/slrn/default.nix
··· 27 homepage = http://slrn.sourceforge.net/index.html; 28 maintainers = with maintainers; [ ehmry ]; 29 license = licenses.gpl2; 30 }; 31 }
··· 27 homepage = http://slrn.sourceforge.net/index.html; 28 maintainers = with maintainers; [ ehmry ]; 29 license = licenses.gpl2; 30 + platforms = with platforms; linux; 31 }; 32 }
+1
pkgs/applications/networking/p2p/frostwire/default.nix
··· 32 description = "BitTorrent Client and Cloud File Downloader"; 33 license = stdenv.lib.licenses.gpl2; 34 maintainers = [ stdenv.lib.maintainers.gavin ]; 35 }; 36 }
··· 32 description = "BitTorrent Client and Cloud File Downloader"; 33 license = stdenv.lib.licenses.gpl2; 34 maintainers = [ stdenv.lib.maintainers.gavin ]; 35 + platforms = stdenv.lib.platforms.unix; 36 }; 37 }
+1
pkgs/applications/networking/p2p/ldcpp/default.nix
··· 24 meta = { 25 description = "Direct Connect client"; 26 license = stdenv.lib.licenses.gpl2; 27 }; 28 }
··· 24 meta = { 25 description = "Direct Connect client"; 26 license = stdenv.lib.licenses.gpl2; 27 + platforms = stdenv.lib.platforms.linux; 28 }; 29 }
+6 -5
pkgs/applications/networking/p2p/mldonkey/default.nix
··· 2 3 stdenv.mkDerivation (rec { 4 name = "mldonkey-3.1.5"; 5 - 6 src = fetchurl { 7 url = "mirror://sourceforge/mldonkey/${name}.tar.bz2"; 8 sha256 = "1jqik6b09p27ckssppfiqpph7alxbgpnf9w1s0lalmi3qyyd9ybl"; 9 }; 10 - 11 meta = { 12 description = "Client for many p2p networks, with multiple frontends"; 13 homepage = http://mldonkey.sourceforge.net/; 14 license = stdenv.lib.licenses.gpl2; 15 }; 16 - 17 - buildInputs = [ ocaml zlib ncurses bzip2 file gd libpng libjpeg ]; 18 - configureFlags = [ "--disable-gui" ]; 19 } // (if !ocaml.nativeCompilers then 20 { 21 # Byte code compilation (the ocaml opt compiler is not supported in some platforms)
··· 2 3 stdenv.mkDerivation (rec { 4 name = "mldonkey-3.1.5"; 5 + 6 src = fetchurl { 7 url = "mirror://sourceforge/mldonkey/${name}.tar.bz2"; 8 sha256 = "1jqik6b09p27ckssppfiqpph7alxbgpnf9w1s0lalmi3qyyd9ybl"; 9 }; 10 + 11 + buildInputs = [ ocaml zlib ncurses bzip2 file gd libpng libjpeg ]; 12 + configureFlags = [ "--disable-gui" ]; 13 + 14 meta = { 15 description = "Client for many p2p networks, with multiple frontends"; 16 homepage = http://mldonkey.sourceforge.net/; 17 license = stdenv.lib.licenses.gpl2; 18 + platforms = stdenv.lib.platforms.unix; 19 }; 20 } // (if !ocaml.nativeCompilers then 21 { 22 # Byte code compilation (the ocaml opt compiler is not supported in some platforms)
+1
pkgs/applications/networking/p2p/transmission-remote-cli/default.nix
··· 22 description = "Curses interface for the Transmission BitTorrent daemon"; 23 homepage = https://github.com/fagga/transmission-remote-cli; 24 license = stdenv.lib.licenses.gpl3Plus; 25 }; 26 }
··· 22 description = "Curses interface for the Transmission BitTorrent daemon"; 23 homepage = https://github.com/fagga/transmission-remote-cli; 24 license = stdenv.lib.licenses.gpl3Plus; 25 + platforms = stdenv.lib.platforms.unix; 26 }; 27 }
+1
pkgs/applications/networking/p2p/tribler/default.nix
··· 58 homepage = http://www.tribler.org/; 59 description = "A completely decentralised P2P filesharing client based on the Bittorrent protocol"; 60 license = stdenv.lib.licenses.lgpl21; 61 }; 62 }
··· 58 homepage = http://www.tribler.org/; 59 description = "A completely decentralised P2P filesharing client based on the Bittorrent protocol"; 60 license = stdenv.lib.licenses.lgpl21; 61 + platforms = stdenv.lib.platforms.linux; 62 }; 63 }
+1
pkgs/applications/networking/p2p/twister/default.nix
··· 58 homepage = "http://www.twister.net.co/"; 59 description = "Peer-to-peer microblogging"; 60 license = stdenv.lib.licenses.mit; 61 }; 62 }
··· 58 homepage = "http://www.twister.net.co/"; 59 description = "Peer-to-peer microblogging"; 60 license = stdenv.lib.licenses.mit; 61 + platforms = stdenv.lib.platforms.linux; 62 }; 63 }
+1
pkgs/applications/networking/remote/freerdp/default.nix
··· 61 homepage = http://www.freerdp.com/; 62 63 license = stdenv.lib.licenses.free; 64 }; 65 }
··· 61 homepage = http://www.freerdp.com/; 62 63 license = stdenv.lib.licenses.free; 64 + platforms = stdenv.lib.platforms.linux; 65 }; 66 }
+1
pkgs/applications/networking/remote/putty/default.nix
··· 30 ''; 31 homepage = http://www.chiark.greenend.org.uk/~sgtatham/putty/; 32 license = licenses.mit; 33 }; 34 }
··· 30 ''; 31 homepage = http://www.chiark.greenend.org.uk/~sgtatham/putty/; 32 license = licenses.mit; 33 + platforms = platforms.linux; 34 }; 35 }
+1
pkgs/applications/networking/sniffers/kismet/default.nix
··· 22 description = "Wireless network sniffer"; 23 homepage = http://www.kismetwireless.net/; 24 license = "GPL"; 25 }; 26 }
··· 22 description = "Wireless network sniffer"; 23 homepage = http://www.kismetwireless.net/; 24 license = "GPL"; 25 + platforms = stdenv.lib.platforms.linux; 26 }; 27 }
+1
pkgs/applications/networking/yafc/default.nix
··· 14 homepage = http://www.yafc-ftp.com; 15 maintainers = [ stdenv.lib.maintainers.page ]; 16 license = stdenv.lib.licenses.gpl2Plus; 17 }; 18 }
··· 14 homepage = http://www.yafc-ftp.com; 15 maintainers = [ stdenv.lib.maintainers.page ]; 16 license = stdenv.lib.licenses.gpl2Plus; 17 + platforms = stdenv.lib.platforms.linux; 18 }; 19 }
+1
pkgs/applications/science/biology/bwa/default.nix
··· 23 license = licenses.gpl3; 24 homepage = http://bio-bwa.sourceforge.net/; 25 maintainers = with maintainers; [ luispedro ]; 26 }; 27 }
··· 23 license = licenses.gpl3; 24 homepage = http://bio-bwa.sourceforge.net/; 25 maintainers = with maintainers; [ luispedro ]; 26 + platforms = with platforms; linux; 27 }; 28 }
+10 -1
pkgs/applications/science/biology/mrbayes/default.nix
··· 13 14 meta = { 15 description = "Bayesian Inference of Phylogeny"; 16 - longDescription = ''Bayesian inference of phylogeny is based upon a quantity called the posterior probability distribution of trees, which is the probability of a tree conditioned on the observations. The conditioning is accomplished using Bayes's theorem. The posterior probability distribution of trees is impossible to calculate analytically; instead, MrBayes uses a simulation technique called Markov chain Monte Carlo (or MCMC) to approximate the posterior probabilities of trees.''; 17 license = "GPL2"; 18 homepage = http://mrbayes.csit.fsu.edu/; 19 }; 20 }
··· 13 14 meta = { 15 description = "Bayesian Inference of Phylogeny"; 16 + longDescription = '' 17 + Bayesian inference of phylogeny is based upon a 18 + quantity called the posterior probability distribution of trees, which is 19 + the probability of a tree conditioned on the observations. The conditioning 20 + is accomplished using Bayes's theorem. The posterior probability 21 + distribution of trees is impossible to calculate analytically; instead, 22 + MrBayes uses a simulation technique called Markov chain Monte Carlo (or 23 + MCMC) to approximate the posterior probabilities of trees. 24 + ''; 25 license = "GPL2"; 26 homepage = http://mrbayes.csit.fsu.edu/; 27 + platforms = stdenv.lib.platforms.linux; 28 }; 29 }
+3 -2
pkgs/applications/science/electronics/fritzing/default.nix
··· 20 preConfigure = '' 21 cd fritzing-${version}.source 22 ''; 23 - 24 meta = { 25 description = "An open source prototyping tool for Arduino-based projects"; 26 homepage = http://fritzing.org/; 27 license = stdenv.lib.licenses.gpl3; 28 maintainers = [ stdenv.lib.maintainers.robberer ]; 29 - }; 30 }
··· 20 preConfigure = '' 21 cd fritzing-${version}.source 22 ''; 23 + 24 meta = { 25 description = "An open source prototyping tool for Arduino-based projects"; 26 homepage = http://fritzing.org/; 27 license = stdenv.lib.licenses.gpl3; 28 maintainers = [ stdenv.lib.maintainers.robberer ]; 29 + platforms = stdenv.lib.platforms.linux; 30 + }; 31 }
+1
pkgs/applications/science/electronics/qfsm/default.nix
··· 18 description = "Graphical editor for finite state machines"; 19 homepage = "http://qfsm.sourceforge.net/"; 20 license = stdenv.lib.licenses.gpl3Plus; 21 }; 22 }
··· 18 description = "Graphical editor for finite state machines"; 19 homepage = "http://qfsm.sourceforge.net/"; 20 license = stdenv.lib.licenses.gpl3Plus; 21 + platforms = stdenv.lib.platforms.unix; 22 }; 23 }
+1
pkgs/applications/science/geometry/drgeo/default.nix
··· 22 23 meta = { 24 description = "Interactive geometry program"; 25 }; 26 }
··· 22 23 meta = { 24 description = "Interactive geometry program"; 25 + platforms = stdenv.lib.platforms.linux; 26 }; 27 }
+1
pkgs/applications/science/geometry/tetgen/1.4.nix
··· 17 description = "Quality Tetrahedral Mesh Generator and 3D Delaunay Triangulator"; 18 homepage = "http://tetgen.org/"; 19 license = stdenv.lib.licenses.mit; 20 }; 21 }
··· 17 description = "Quality Tetrahedral Mesh Generator and 3D Delaunay Triangulator"; 18 homepage = "http://tetgen.org/"; 19 license = stdenv.lib.licenses.mit; 20 + platforms = stdenv.lib.platforms.linux; 21 }; 22 }
+1
pkgs/applications/science/geometry/tetgen/default.nix
··· 19 description = "Quality Tetrahedral Mesh Generator and 3D Delaunay Triangulator"; 20 homepage = "http://tetgen.org/"; 21 license = stdenv.lib.licenses.agpl3Plus; 22 }; 23 }
··· 19 description = "Quality Tetrahedral Mesh Generator and 3D Delaunay Triangulator"; 20 homepage = "http://tetgen.org/"; 21 license = stdenv.lib.licenses.agpl3Plus; 22 + platforms = stdenv.lib.platforms.linux; 23 }; 24 }
+1
pkgs/applications/science/logic/coq/8.3.nix
··· 74 license = licenses.lgpl21; 75 branch = "8.3"; 76 maintainers = with maintainers; [ roconnor vbgl ]; 77 }; 78 }
··· 74 license = licenses.lgpl21; 75 branch = "8.3"; 76 maintainers = with maintainers; [ roconnor vbgl ]; 77 + platforms = with platforms; linux; 78 }; 79 }
+1
pkgs/applications/science/logic/hol/default.nix
··· 82 homepage = "http://hol.sourceforge.net/"; 83 license = licenses.bsd3; 84 maintainers = with maintainers; [ mudri ]; 85 }; 86 }
··· 82 homepage = "http://hol.sourceforge.net/"; 83 license = licenses.bsd3; 84 maintainers = with maintainers; [ mudri ]; 85 + platforms = with platforms; linux; 86 }; 87 }
+1
pkgs/applications/science/logic/isabelle/default.nix
··· 62 homepage = http://isabelle.in.tum.de/; 63 license = "LGPL"; 64 maintainers = [ stdenv.lib.maintainers.jwiegley ]; 65 }; 66 }
··· 62 homepage = http://isabelle.in.tum.de/; 63 license = "LGPL"; 64 maintainers = [ stdenv.lib.maintainers.jwiegley ]; 65 + platforms = stdenv.lib.platforms.linux; 66 }; 67 }
+1
pkgs/applications/science/logic/logisim/default.nix
··· 28 homepage = "http://ozark.hendrix.edu/~burch/logisim"; 29 description = "Educational tool for designing and simulating digital logic circuits"; 30 license = stdenv.lib.licenses.gpl2Plus; 31 }; 32 }
··· 28 homepage = "http://ozark.hendrix.edu/~burch/logisim"; 29 description = "Educational tool for designing and simulating digital logic circuits"; 30 license = stdenv.lib.licenses.gpl2Plus; 31 + platforms = stdenv.lib.platforms.unix; 32 }; 33 }
+2 -1
pkgs/applications/science/logic/sad/default.nix
··· 29 license = stdenv.lib.licenses.gpl3Plus; 30 maintainers = [ stdenv.lib.maintainers.schmitthenner ]; 31 homepage = http://nevidal.org/sad.en.html; 32 - }; 33 }
··· 29 license = stdenv.lib.licenses.gpl3Plus; 30 maintainers = [ stdenv.lib.maintainers.schmitthenner ]; 31 homepage = http://nevidal.org/sad.en.html; 32 + platforms = stdenv.lib.platforms.linux; 33 + }; 34 }
+1
pkgs/applications/science/math/csdp/default.nix
··· 24 license = lib.licenses.cpl10; 25 maintainers = [ lib.maintainers.roconnor ]; 26 description = "A C Library for Semidefinite Programming"; 27 }; 28 }
··· 24 license = lib.licenses.cpl10; 25 maintainers = [ lib.maintainers.roconnor ]; 26 description = "A C Library for Semidefinite Programming"; 27 + platforms = stdenv.lib.platforms.unix; 28 }; 29 }
+1 -1
pkgs/applications/science/math/fricas/default.nix
··· 17 description = "An advanced computer algebra system"; 18 license = stdenv.lib.licenses.bsd3; 19 20 - hydraPlatforms = stdenv.lib.platforms.linux; 21 maintainers = [ stdenv.lib.maintainers.sprock ]; 22 }; 23 }
··· 17 description = "An advanced computer algebra system"; 18 license = stdenv.lib.licenses.bsd3; 19 20 + platforms = stdenv.lib.platforms.linux; 21 maintainers = [ stdenv.lib.maintainers.sprock ]; 22 }; 23 }
+1
pkgs/applications/science/math/jags/default.nix
··· 14 license = "GPL2"; 15 homepage = http://www-ice.iarc.fr/~martyn/software/jags/; 16 maintainers = [stdenv.lib.maintainers.andres]; 17 }; 18 }
··· 14 license = "GPL2"; 15 homepage = http://www-ice.iarc.fr/~martyn/software/jags/; 16 maintainers = [stdenv.lib.maintainers.andres]; 17 + platforms = stdenv.lib.platforms.unix; 18 }; 19 }
+1
pkgs/applications/science/math/msieve/default.nix
··· 24 license = stdenv.lib.licenses.publicDomain; 25 homepage = http://msieve.sourceforge.net/; 26 maintainers = [ stdenv.lib.maintainers.roconnor ]; 27 }; 28 }
··· 24 license = stdenv.lib.licenses.publicDomain; 25 homepage = http://msieve.sourceforge.net/; 26 maintainers = [ stdenv.lib.maintainers.roconnor ]; 27 + platforms = stdenv.lib.platforms.linux; 28 }; 29 }
+1
pkgs/applications/science/math/weka/default.nix
··· 30 description = "Collection of machine learning algorithms for data mining tasks"; 31 license = stdenv.lib.licenses.gpl2Plus; 32 maintainer = [stdenv.lib.maintainers.mimadrid]; 33 }; 34 }
··· 30 description = "Collection of machine learning algorithms for data mining tasks"; 31 license = stdenv.lib.licenses.gpl2Plus; 32 maintainer = [stdenv.lib.maintainers.mimadrid]; 33 + platforms = stdenv.lib.platforms.unix; 34 }; 35 }
+1
pkgs/applications/science/misc/cytoscape/default.nix
··· 29 description = "A general platform for complex network analysis and visualization"; 30 license = stdenv.lib.licenses.lgpl21; 31 maintainers = [stdenv.lib.maintainers.mimadrid]; 32 }; 33 }
··· 29 description = "A general platform for complex network analysis and visualization"; 30 license = stdenv.lib.licenses.lgpl21; 31 maintainers = [stdenv.lib.maintainers.mimadrid]; 32 + platforms = stdenv.lib.platforms.unix; 33 }; 34 }
+1
pkgs/applications/science/molecular-dynamics/gromacs/default.nix
··· 50 51 See: http://www.gromacs.org/About_Gromacs for details. 52 ''; 53 }; 54 }
··· 50 51 See: http://www.gromacs.org/About_Gromacs for details. 52 ''; 53 + platforms = platforms.unix; 54 }; 55 }
+1
pkgs/applications/version-management/bazaar/tools.nix
··· 18 meta = { 19 description = "Bazaar plugins"; 20 homepage = http://wiki.bazaar.canonical.com/BzrTools; 21 }; 22 }
··· 18 meta = { 19 description = "Bazaar plugins"; 20 homepage = http://wiki.bazaar.canonical.com/BzrTools; 21 + platforms = stdenv.lib.platforms.unix; 22 }; 23 }
+1
pkgs/applications/version-management/cvs2svn/default.nix
··· 27 description = "A tool to convert CVS repositories to Subversion repositories"; 28 homepage = http://cvs2svn.tigris.org/; 29 maintainers = [ lib.maintainers.makefu ]; 30 }; 31 }
··· 27 description = "A tool to convert CVS repositories to Subversion repositories"; 28 homepage = http://cvs2svn.tigris.org/; 29 maintainers = [ lib.maintainers.makefu ]; 30 + platforms = stdenv.lib.platforms.unix; 31 }; 32 }
+1
pkgs/applications/version-management/git-and-tools/darcs-to-git/default.nix
··· 75 description = "Converts a Darcs repository into a Git repository"; 76 homepage = "http://www.sanityinc.com/articles/converting-darcs-repositories-to-git"; 77 license = stdenv.lib.licenses.mit; 78 }; 79 }
··· 75 description = "Converts a Darcs repository into a Git repository"; 76 homepage = "http://www.sanityinc.com/articles/converting-darcs-repositories-to-git"; 77 license = stdenv.lib.licenses.mit; 78 + platforms = stdenv.lib.platforms.unix; 79 }; 80 }
+1
pkgs/applications/version-management/git-and-tools/fast-export/default.nix
··· 36 homepage = http://repo.or.cz/w/fast-export.git; 37 license = licenses.gpl2; 38 maintainers = [ maintainers.koral ]; 39 }; 40 }
··· 36 homepage = http://repo.or.cz/w/fast-export.git; 37 license = licenses.gpl2; 38 maintainers = [ maintainers.koral ]; 39 + platforms = stdenv.lib.platforms.unix; 40 }; 41 }
+1
pkgs/applications/version-management/git-and-tools/git-crypt/default.nix
··· 37 license = licenses.gpl3; 38 version = "0.5.0"; 39 maintainers = [ maintainers.dochang ]; 40 }; 41 42 }
··· 37 license = licenses.gpl3; 38 version = "0.5.0"; 39 maintainers = [ maintainers.dochang ]; 40 + platforms = platforms.linux; 41 }; 42 43 }
+1
pkgs/applications/version-management/git-and-tools/git-remote-gcrypt/default.nix
··· 27 description = "GNU Privacy Guard-encrypted git remote"; 28 license = stdenv.lib.licenses.gpl3; 29 maintainers = with stdenv.lib.maintainers; [ ellis ]; 30 }; 31 }
··· 27 description = "GNU Privacy Guard-encrypted git remote"; 28 license = stdenv.lib.licenses.gpl3; 29 maintainers = with stdenv.lib.maintainers; [ ellis ]; 30 + platforms = with stdenv.lib.platforms; unix; 31 }; 32 }
+1
pkgs/applications/version-management/git-and-tools/git-remote-hg/default.nix
··· 31 description = "Semi-official Mercurial bridge from Git project, once installed, it allows you to clone, fetch and push to and from Mercurial repositories as if they were Git ones"; 32 license = licenses.gpl2; 33 maintainers = [ maintainers.garbas ]; 34 }; 35 }
··· 31 description = "Semi-official Mercurial bridge from Git project, once installed, it allows you to clone, fetch and push to and from Mercurial repositories as if they were Git ones"; 32 license = licenses.gpl2; 33 maintainers = [ maintainers.garbas ]; 34 + platforms = platforms.unix; 35 }; 36 }
+1
pkgs/applications/version-management/git-and-tools/git-stree/default.nix
··· 22 homepage = http://deliciousinsights.github.io/git-stree; 23 license = licenses.mit; 24 maintainers = [ maintainers.benley ]; 25 }; 26 }
··· 22 homepage = http://deliciousinsights.github.io/git-stree; 23 license = licenses.mit; 24 maintainers = [ maintainers.benley ]; 25 + platforms = platforms.unix; 26 }; 27 }
+1
pkgs/applications/version-management/git-and-tools/git2cl/default.nix
··· 18 meta = { 19 homepage = "http://josefsson.org/git2cl/"; 20 description = "Convert git logs to GNU style ChangeLog files"; 21 }; 22 }
··· 18 meta = { 19 homepage = "http://josefsson.org/git2cl/"; 20 description = "Convert git logs to GNU style ChangeLog files"; 21 + platforms = stdenv.lib.platforms.unix; 22 }; 23 }
+1
pkgs/applications/version-management/git-and-tools/hub/default.nix
··· 44 license = licenses.mit; 45 homepage = https://hub.github.com/; 46 maintainers = with maintainers; [ the-kenny ]; 47 }; 48 }
··· 44 license = licenses.mit; 45 homepage = https://hub.github.com/; 46 maintainers = with maintainers; [ the-kenny ]; 47 + platforms = with platforms; unix; 48 }; 49 }
+1
pkgs/applications/version-management/git-and-tools/svn2git/default.nix
··· 35 license = stdenv.lib.licenses.mit; 36 37 maintainers = [ stdenv.lib.maintainers.the-kenny ]; 38 }; 39 }
··· 35 license = stdenv.lib.licenses.mit; 36 37 maintainers = [ stdenv.lib.maintainers.the-kenny ]; 38 + platforms = stdenv.lib.platforms.unix; 39 }; 40 }
+1
pkgs/applications/version-management/git-repo/default.nix
··· 19 meta = { 20 homepage = "http://source.android.com/source/downloading.html"; 21 description = "Android's repo management tool"; 22 }; 23 }
··· 19 meta = { 20 homepage = "http://source.android.com/source/downloading.html"; 21 description = "Android's repo management tool"; 22 + platforms = stdenv.lib.platforms.unix; 23 }; 24 }
+3
pkgs/applications/version-management/gitlab-shell/default.nix
··· 56 " *args)" 57 ''; 58 59 }
··· 56 " *args)" 57 ''; 58 59 + meta = { 60 + platforms = stdenv.lib.platforms.unix; 61 + }; 62 }
+4
pkgs/applications/version-management/gitlab-workhorse/default.nix
··· 23 mkdir -p $out/bin 24 make install PREFIX=$out 25 ''; 26 }
··· 23 mkdir -p $out/bin 24 make install PREFIX=$out 25 ''; 26 + 27 + meta = { 28 + platforms = stdenv.lib.platforms.unix; 29 + }; 30 }
+1
pkgs/applications/version-management/mercurial/default.nix
··· 69 license = stdenv.lib.licenses.gpl2; 70 maintainers = [ stdenv.lib.maintainers.eelco ]; 71 updateWalker = true; 72 }; 73 }
··· 69 license = stdenv.lib.licenses.gpl2; 70 maintainers = [ stdenv.lib.maintainers.eelco ]; 71 updateWalker = true; 72 + platforms = stdenv.lib.platforms.unix; 73 }; 74 }
+1 -1
pkgs/applications/version-management/subversion/default.nix
··· 90 description = "A version control system intended to be a compelling replacement for CVS in the open source community"; 91 homepage = http://subversion.apache.org/; 92 maintainers = with stdenv.lib.maintainers; [ eelco lovek323 ]; 93 - hydraPlatforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; 94 }; 95 96 } // stdenv.lib.optionalAttrs stdenv.isDarwin {
··· 90 description = "A version control system intended to be a compelling replacement for CVS in the open source community"; 91 homepage = http://subversion.apache.org/; 92 maintainers = with stdenv.lib.maintainers; [ eelco lovek323 ]; 93 + platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; 94 }; 95 96 } // stdenv.lib.optionalAttrs stdenv.isDarwin {
+1
pkgs/applications/version-management/tkcvs/default.nix
··· 23 homepage = http://www.twobarleycorns.net/tkcvs.html; 24 description = "TCL/TK GUI for cvs and subversion"; 25 license = stdenv.lib.licenses.gpl2Plus; 26 }; 27 }
··· 23 homepage = http://www.twobarleycorns.net/tkcvs.html; 24 description = "TCL/TK GUI for cvs and subversion"; 25 license = stdenv.lib.licenses.gpl2Plus; 26 + platforms = stdenv.lib.platforms.unix; 27 }; 28 }
+1
pkgs/applications/video/dvdauthor/default.nix
··· 22 description = "Tools for generating DVD files to be played on standalone DVD players"; 23 homepage = http://dvdauthor.sourceforge.net/; 24 license = licenses.gpl2; 25 }; 26 }
··· 22 description = "Tools for generating DVD files to be played on standalone DVD players"; 23 homepage = http://dvdauthor.sourceforge.net/; 24 license = licenses.gpl2; 25 + platforms = platforms.linux; 26 }; 27 }
+1
pkgs/applications/video/dvdbackup/default.nix
··· 16 homepage = http://dvdbackup.sourceforge.net/; 17 license = stdenv.lib.licenses.gpl3Plus; 18 maintainers = [ stdenv.lib.maintainers.bradediger ]; 19 }; 20 }
··· 16 homepage = http://dvdbackup.sourceforge.net/; 17 license = stdenv.lib.licenses.gpl3Plus; 18 maintainers = [ stdenv.lib.maintainers.bradediger ]; 19 + platforms = stdenv.lib.platforms.linux; 20 }; 21 }
+1
pkgs/applications/video/kino/default.nix
··· 91 description = "Non-linear DV editor for GNU/Linux"; 92 homepage = http://www.kinodv.org/; 93 license = stdenv.lib.licenses.gpl2; 94 }; 95 }
··· 91 description = "Non-linear DV editor for GNU/Linux"; 92 homepage = http://www.kinodv.org/; 93 license = stdenv.lib.licenses.gpl2; 94 + platforms = stdenv.lib.platforms.linux; 95 }; 96 }
+1
pkgs/applications/video/kodi/wrapper.nix
··· 48 + lib.concatStrings (lib.intersperse ", " (map (x: ""+x.name) plugins)) 49 + ")"; 50 51 }; 52 53 }
··· 48 + lib.concatStrings (lib.intersperse ", " (map (x: ""+x.name) plugins)) 49 + ")"; 50 51 + platforms = stdenv.lib.platforms.linux; 52 }; 53 54 }
+1
pkgs/applications/video/lxdvdrip/default.nix
··· 24 description = "Command line tool to make a copy from a video DVD for private use"; 25 homepage = http://sourceforge.net/projects/lxdvdrip; 26 license = stdenv.lib.licenses.gpl2; 27 }; 28 }
··· 24 description = "Command line tool to make a copy from a video DVD for private use"; 25 homepage = http://sourceforge.net/projects/lxdvdrip; 26 license = stdenv.lib.licenses.gpl2; 27 + platforms = stdenv.lib.platforms.linux; 28 }; 29 }
+1
pkgs/applications/video/obs-studio/default.nix
··· 67 homepage = "https://obsproject.com"; 68 maintainers = with maintainers; [ jb55 ]; 69 license = licenses.gpl2; 70 }; 71 }
··· 67 homepage = "https://obsproject.com"; 68 maintainers = with maintainers; [ jb55 ]; 69 license = licenses.gpl2; 70 + platforms = with platforms; linux; 71 }; 72 }
+2 -1
pkgs/applications/video/tivodecode/default.nix
··· 16 meta = { 17 description = "Converts a .TiVo file (produced by TiVoToGo) to a normal MPEG file"; 18 homepage = http://tivodecode.sourceforge.net; 19 }; 20 - }
··· 16 meta = { 17 description = "Converts a .TiVo file (produced by TiVoToGo) to a normal MPEG file"; 18 homepage = http://tivodecode.sourceforge.net; 19 + platforms = stdenv.lib.platforms.unix; 20 }; 21 + }
+1
pkgs/applications/video/xine-ui/default.nix
··· 28 meta = { 29 homepage = http://www.xine-project.org/; 30 description = "Xlib-based interface to Xine, a video player"; 31 }; 32 }
··· 28 meta = { 29 homepage = http://www.xine-project.org/; 30 description = "Xlib-based interface to Xine, a video player"; 31 + platforms = stdenv.lib.platforms.linux; 32 }; 33 }
+2 -2
pkgs/applications/virtualization/seabios/default.nix
··· 3 stdenv.mkDerivation rec { 4 5 name = "seabios-${version}"; 6 - version = "1.9.2"; 7 8 src = fetchurl { 9 url = "http://code.coreboot.org/p/seabios/downloads/get/${name}.tar.gz"; 10 - sha256 = "1rdvbqb374jimxbkk9yvk9rnzhkn0w0sbvi1l3gnz6ah1sdla7gh"; 11 }; 12 13 buildInputs = [ iasl python ];
··· 3 stdenv.mkDerivation rec { 4 5 name = "seabios-${version}"; 6 + version = "1.9.3"; 7 8 src = fetchurl { 9 url = "http://code.coreboot.org/p/seabios/downloads/get/${name}.tar.gz"; 10 + sha256 = "13b7n20qfc2cc8v70jvl9r51m563rss9lbk1aflirvnd9705vs0s"; 11 }; 12 13 buildInputs = [ iasl python ];
+1
pkgs/applications/virtualization/virtinst/default.nix
··· 41 license = stdenv.lib.licenses.gpl2Plus; 42 maintainers = with stdenv.lib.maintainers; [qknight]; 43 description = "Command line tool which provides an easy way to provision operating systems into virtual machines"; 44 }; 45 }
··· 41 license = stdenv.lib.licenses.gpl2Plus; 42 maintainers = with stdenv.lib.maintainers; [qknight]; 43 description = "Command line tool which provides an easy way to provision operating systems into virtual machines"; 44 + platforms = with stdenv.lib.platforms; linux; 45 }; 46 }
+1
pkgs/applications/window-managers/fvwm/default.nix
··· 25 homepage = "http://fvwm.org"; 26 description = "A multiple large virtual desktop window manager"; 27 license = stdenv.lib.licenses.gpl2Plus; 28 }; 29 }
··· 25 homepage = "http://fvwm.org"; 26 description = "A multiple large virtual desktop window manager"; 27 license = stdenv.lib.licenses.gpl2Plus; 28 + platforms = stdenv.lib.platforms.linux; 29 }; 30 }
+1
pkgs/applications/window-managers/larswm/default.nix
··· 20 homepage = http://larswm.fnurt.net/; 21 description = "9wm-like tiling window manager"; 22 license = stdenv.lib.licenses.free; 23 }; 24 }
··· 20 homepage = http://larswm.fnurt.net/; 21 description = "9wm-like tiling window manager"; 22 license = stdenv.lib.licenses.free; 23 + platforms = stdenv.lib.platforms.linux; 24 }; 25 }
+1
pkgs/applications/window-managers/matchbox/default.nix
··· 15 description = "X window manager for non-desktop embedded systems"; 16 homepage = http://matchbox-project.org/; 17 license = stdenv.lib.licenses.gpl2Plus; 18 }; 19 }
··· 15 description = "X window manager for non-desktop embedded systems"; 16 homepage = http://matchbox-project.org/; 17 license = stdenv.lib.licenses.gpl2Plus; 18 + platforms = stdenv.lib.platforms.linux; 19 }; 20 }
+4
pkgs/applications/window-managers/taffybar/default.nix
··· 12 makeWrapper ${taffybarEnv}/bin/taffybar $out/bin/taffybar \ 13 --set NIX_GHC "${taffybarEnv}/bin/ghc" 14 ''; 15 }
··· 12 makeWrapper ${taffybarEnv}/bin/taffybar $out/bin/taffybar \ 13 --set NIX_GHC "${taffybarEnv}/bin/ghc" 14 ''; 15 + 16 + meta = { 17 + platforms = stdenv.lib.platforms.unix; 18 + }; 19 }
+1
pkgs/applications/window-managers/windowmaker/default.nix
··· 36 ''; 37 license = licenses.gpl2Plus; 38 maintainers = [ maintainers.AndersonTorres ]; 39 }; 40 } 41
··· 36 ''; 37 license = licenses.gpl2Plus; 38 maintainers = [ maintainers.AndersonTorres ]; 39 + platforms = platforms.linux; 40 }; 41 } 42
+1
pkgs/applications/window-managers/windowmaker/dockapps/wmcalclock.nix
··· 26 homepage = "http://www.cs.mun.ca/~gstarkes/wmaker/dockapps/time.html#wmcalclock"; 27 license = stdenv.lib.licenses.gpl2; 28 maintainers = [ stdenv.lib.maintainers.bstrik ]; 29 }; 30 }
··· 26 homepage = "http://www.cs.mun.ca/~gstarkes/wmaker/dockapps/time.html#wmcalclock"; 27 license = stdenv.lib.licenses.gpl2; 28 maintainers = [ stdenv.lib.maintainers.bstrik ]; 29 + platforms = stdenv.lib.platforms.linux; 30 }; 31 }
+1
pkgs/applications/window-managers/windowmaker/dockapps/wmsystemtray.nix
··· 14 homepage = "http://wmsystemtray.sourceforge.net"; 15 license = stdenv.lib.licenses.gpl2; 16 maintainers = [ stdenv.lib.maintainers.bstrik ]; 17 }; 18 }
··· 14 homepage = "http://wmsystemtray.sourceforge.net"; 15 license = stdenv.lib.licenses.gpl2; 16 maintainers = [ stdenv.lib.maintainers.bstrik ]; 17 + platforms = stdenv.lib.platforms.linux; 18 }; 19 }
+1
pkgs/applications/window-managers/wmii-hg/default.nix
··· 41 maintainers = with stdenv.lib.maintainers; [ kovirobi ]; 42 license = stdenv.lib.licenses.mit; 43 inherit version; 44 }; 45 }
··· 41 maintainers = with stdenv.lib.maintainers; [ kovirobi ]; 42 license = stdenv.lib.licenses.mit; 43 inherit version; 44 + platforms = with stdenv.lib.platforms; linux; 45 }; 46 }
+6 -6
pkgs/build-support/icon-conv-tools/default.nix
··· 3 stdenv.mkDerivation { 4 name = "icon-conv-tools-0.0.0"; 5 6 - src = ./.; 7 8 buildInputs = [ icoutils ]; 9 10 patchPhase = '' 11 - substituteInPlace "./bin/extractWinRscIconsToStdFreeDesktopDir.sh" \ 12 --replace "icotool" "${icoutils}/bin/icotool" \ 13 --replace "wrestool" "${icoutils}/bin/wrestool" 14 ''; 15 16 buildPhase = '' 17 mkdir -p "$out/bin" 18 - cp -p "./bin/"* "$out/bin" 19 ''; 20 21 installPhase = "true"; 22 - 23 dontPatchELF = true; 24 dontStrip = true; 25 26 meta = { 27 description = "Tools for icon conversion specific to nix package manager"; 28 maintainers = with stdenv.lib.maintainers; [ jraygauthier ]; 29 }; 30 - 31 - }
··· 3 stdenv.mkDerivation { 4 name = "icon-conv-tools-0.0.0"; 5 6 + src = ./bin; 7 8 buildInputs = [ icoutils ]; 9 10 patchPhase = '' 11 + substituteInPlace extractWinRscIconsToStdFreeDesktopDir.sh \ 12 --replace "icotool" "${icoutils}/bin/icotool" \ 13 --replace "wrestool" "${icoutils}/bin/wrestool" 14 ''; 15 16 buildPhase = '' 17 mkdir -p "$out/bin" 18 + cp -p * "$out/bin" 19 ''; 20 21 installPhase = "true"; 22 + 23 dontPatchELF = true; 24 dontStrip = true; 25 26 meta = { 27 description = "Tools for icon conversion specific to nix package manager"; 28 maintainers = with stdenv.lib.maintainers; [ jraygauthier ]; 29 + platforms = with stdenv.lib.platforms; linux; 30 }; 31 + }
+4
pkgs/build-support/libredirect/default.nix
··· 11 ''; 12 13 installPhase = "mkdir -p $out/lib; cp libredirect.so $out/lib"; 14 }
··· 11 ''; 12 13 installPhase = "mkdir -p $out/lib; cp libredirect.so $out/lib"; 14 + 15 + meta = { 16 + platforms = stdenv.lib.platforms.linux; 17 + }; 18 }
+1 -1
pkgs/build-support/mono-dll-fixer/default.nix
··· 5 builder = ./builder.sh; 6 dllFixer = ./dll-fixer.pl; 7 inherit perl; 8 - }
··· 5 builder = ./builder.sh; 6 dllFixer = ./dll-fixer.pl; 7 inherit perl; 8 + }
+1
pkgs/data/documentation/man-pages-posix/default.nix
··· 16 meta = { 17 description = "POSIX man-pages (0p, 1p, 3p)"; 18 homepage = https://www.kernel.org/doc/man-pages/; 19 }; 20 }
··· 16 meta = { 17 description = "POSIX man-pages (0p, 1p, 3p)"; 18 homepage = https://www.kernel.org/doc/man-pages/; 19 + platforms = stdenv.lib.platforms.unix; 20 }; 21 }
+1
pkgs/data/documentation/man-pages/default.nix
··· 21 homepage = http://www.kernel.org/doc/man-pages/; 22 repositories.git = http://git.kernel.org/pub/scm/docs/man-pages/man-pages; 23 maintainers = with maintainers; [ nckx ]; 24 }; 25 }
··· 21 homepage = http://www.kernel.org/doc/man-pages/; 22 repositories.git = http://git.kernel.org/pub/scm/docs/man-pages/man-pages; 23 maintainers = with maintainers; [ nckx ]; 24 + platforms = with platforms; unix; 25 }; 26 }
+1
pkgs/data/documentation/std-man-pages/default.nix
··· 19 description = "C++ STD manual pages"; 20 homepage = http://gcc.gnu.org/; 21 license = "GPL/LGPL"; 22 }; 23 }
··· 19 description = "C++ STD manual pages"; 20 homepage = http://gcc.gnu.org/; 21 license = "GPL/LGPL"; 22 + platforms = stdenv.lib.platforms.unix; 23 }; 24 }
+1
pkgs/data/fonts/arkpandora/default.nix
··· 19 20 meta = { 21 description = "Font, metrically identical to Arial and Times New Roman"; 22 }; 23 }
··· 19 20 meta = { 21 description = "Font, metrically identical to Arial and Times New Roman"; 22 + platforms = stdenv.lib.platforms.unix; 23 }; 24 }
+1
pkgs/data/fonts/baekmuk-ttf/default.nix
··· 24 description = "Korean font"; 25 homepage = "http://kldp.net/projects/baekmuk/"; 26 license = "BSD-like"; 27 }; 28 } 29
··· 24 description = "Korean font"; 25 homepage = "http://kldp.net/projects/baekmuk/"; 26 license = "BSD-like"; 27 + platforms = stdenv.lib.platforms.linux; 28 }; 29 } 30
+1
pkgs/data/fonts/bakoma-ttf/default.nix
··· 18 meta = { 19 description = "TrueType versions of the Computer Modern and AMS TeX Fonts"; 20 homepage = http://www.ctan.org/tex-archive/fonts/cm/ps-type1/bakoma/ttf/; 21 }; 22 }
··· 18 meta = { 19 description = "TrueType versions of the Computer Modern and AMS TeX Fonts"; 20 homepage = http://www.ctan.org/tex-archive/fonts/cm/ps-type1/bakoma/ttf/; 21 + platforms = stdenv.lib.platforms.unix; 22 }; 23 }
+1
pkgs/data/fonts/clearlyU/default.nix
··· 22 meta = { 23 description = "A Unicode font"; 24 maintainers = [stdenv.lib.maintainers.raskin]; 25 }; 26 }
··· 22 meta = { 23 description = "A Unicode font"; 24 maintainers = [stdenv.lib.maintainers.raskin]; 25 + platforms = stdenv.lib.platforms.unix; 26 }; 27 }
+4 -1
pkgs/data/fonts/dejavu-fonts/default.nix
··· 39 cp $i $out/share/fonts/truetype; 40 done; 41 ''; 42 } 43 -
··· 39 cp $i $out/share/fonts/truetype; 40 done; 41 ''; 42 + 43 + meta = { 44 + platforms = stdenv.lib.platforms.linux; 45 + }; 46 }
+1
pkgs/data/fonts/dosemu-fonts/default.nix
··· 27 28 meta = { 29 description = "Various fonts from the DOSEmu project"; 30 }; 31 }
··· 27 28 meta = { 29 description = "Various fonts from the DOSEmu project"; 30 + platforms = stdenv.lib.platforms.linux; 31 }; 32 }
+1
pkgs/data/fonts/gdouros/default.nix
··· 50 # they may be installed, embedded, opened, edited, modified, regenerated, posted, packaged and redistributed. 51 license = stdenv.lib.licenses.free; 52 homepage = http://users.teilar.gr/~g1951d/; 53 }; 54 }; 55
··· 50 # they may be installed, embedded, opened, edited, modified, regenerated, posted, packaged and redistributed. 51 license = stdenv.lib.licenses.free; 52 homepage = http://users.teilar.gr/~g1951d/; 53 + platforms = stdenv.lib.platforms.unix; 54 }; 55 }; 56
+21 -6
pkgs/data/fonts/gentium/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 name = "gentium-${version}"; 5 - version = "1.504"; 6 7 src = fetchzip { 8 - name = "${name}.zip"; 9 - url = "http://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=GentiumPlus-${version}.zip&filename=${name}.zip"; 10 - sha256 = "1xdx80dfal0b8rkrp1janybx2hki7algnvkx4hyghgikpjcjkdh7"; 11 }; 12 13 phases = [ "unpackPhase" "installPhase" ]; ··· 16 mkdir -p $out/share/fonts/truetype 17 mkdir -p $out/share/doc/${name} 18 cp -v *.ttf $out/share/fonts/truetype/ 19 - cp -v FONTLOG.txt GENTIUM-FAQ.txt README.txt $out/share/doc/${name} 20 ''; 21 22 meta = with stdenv.lib; { 23 - homepage = "http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&item_id=Gentium"; 24 description = "A high-quality typeface family for Latin, Cyrillic, and Greek"; 25 maintainers = with maintainers; [ raskin rycee ]; 26 license = licenses.ofl; 27 platforms = platforms.all;
··· 2 3 stdenv.mkDerivation rec { 4 name = "gentium-${version}"; 5 + version = "5.000"; 6 7 src = fetchzip { 8 + url = "http://software.sil.org/downloads/gentium/GentiumPlus-${version}.zip"; 9 + sha256 = "0g9sx38wh7f0m16gr64g2xggjwak2q6jw9y4zhrvhmp4aq4xfqm6"; 10 }; 11 12 phases = [ "unpackPhase" "installPhase" ]; ··· 15 mkdir -p $out/share/fonts/truetype 16 mkdir -p $out/share/doc/${name} 17 cp -v *.ttf $out/share/fonts/truetype/ 18 + cp -vr documentation/ FONTLOG.txt GENTIUM-FAQ.txt README.txt $out/share/doc/${name} 19 ''; 20 21 meta = with stdenv.lib; { 22 + homepage = "http://software.sil.org/gentium/"; 23 description = "A high-quality typeface family for Latin, Cyrillic, and Greek"; 24 + longDescription = '' 25 + Gentium is a typeface family designed to enable the diverse ethnic groups 26 + around the world who use the Latin, Cyrillic and Greek scripts to produce 27 + readable, high-quality publications. It supports a wide range of Latin and 28 + Cyrillic-based alphabets. 29 + 30 + The design is intended to be highly readable, reasonably compact, and 31 + visually attractive. The additional ‘extended’ Latin letters are designed 32 + to naturally harmonize with the traditional 26 ones. Diacritics are 33 + treated with careful thought and attention to their use. Gentium Plus also 34 + supports both polytonic and monotonic Greek. 35 + 36 + This package contains the regular and italic styles for the Gentium Plus 37 + font family, along with documentation. 38 + ''; 39 + downloadPage = "http://software.sil.org/gentium/download/"; 40 maintainers = with maintainers; [ raskin rycee ]; 41 license = licenses.ofl; 42 platforms = platforms.all;
+1
pkgs/data/fonts/inconsolata/lgc.nix
··· 55 maintainers = [ 56 stdenv.lib.maintainers.avnik 57 ]; 58 }; 59 }
··· 55 maintainers = [ 56 stdenv.lib.maintainers.avnik 57 ]; 58 + platforms = stdenv.lib.platforms.linux; 59 }; 60 }
+1
pkgs/data/fonts/ipaexfont/default.nix
··· 27 homepage = http://ipafont.ipa.go.jp/; 28 license = licenses.ipa; 29 maintainers = with maintainers; [ gebner ]; 30 }; 31 }
··· 27 homepage = http://ipafont.ipa.go.jp/; 28 license = licenses.ipa; 29 maintainers = with maintainers; [ gebner ]; 30 + platforms = with platforms; unix; 31 }; 32 }
+1
pkgs/data/fonts/ipafont/default.nix
··· 29 homepage = http://ipafont.ipa.go.jp/ipafont/; 30 license = stdenv.lib.licenses.ipa; 31 maintainers = [ stdenv.lib.maintainers.auntie ]; 32 }; 33 }
··· 29 homepage = http://ipafont.ipa.go.jp/ipafont/; 30 license = stdenv.lib.licenses.ipa; 31 maintainers = [ stdenv.lib.maintainers.auntie ]; 32 + platforms = stdenv.lib.platforms.unix; 33 }; 34 }
+1
pkgs/data/fonts/junicode/default.nix
··· 19 meta = { 20 homepage = http://junicode.sourceforge.net/; 21 description = "A Unicode font"; 22 }; 23 }
··· 19 meta = { 20 homepage = http://junicode.sourceforge.net/; 21 description = "A Unicode font"; 22 + platforms = stdenv.lib.platforms.unix; 23 }; 24 }
+1
pkgs/data/fonts/kawkab-mono/default.nix
··· 20 description = "An arab fixed-width font"; 21 homepage = "http://makkuk.com/kawkab-mono/"; 22 license = stdenv.lib.licenses.ofl; 23 }; 24 } 25
··· 20 description = "An arab fixed-width font"; 21 homepage = "http://makkuk.com/kawkab-mono/"; 22 license = stdenv.lib.licenses.ofl; 23 + platforms = stdenv.lib.platforms.unix; 24 }; 25 } 26
+1
pkgs/data/fonts/kochi-substitute/default.nix
··· 39 homepage = http://sourceforge.jp/projects/efont/; 40 license = stdenv.lib.licenses.wadalab; 41 maintainers = [ stdenv.lib.maintainers.auntie ]; 42 }; 43 }
··· 39 homepage = http://sourceforge.jp/projects/efont/; 40 license = stdenv.lib.licenses.wadalab; 41 maintainers = [ stdenv.lib.maintainers.auntie ]; 42 + platforms = stdenv.lib.platforms.linux; 43 }; 44 }
+1
pkgs/data/fonts/lmodern/default.nix
··· 20 21 meta = { 22 description = "Latin Modern font"; 23 }; 24 } 25
··· 20 21 meta = { 22 description = "Latin Modern font"; 23 + platforms = stdenv.lib.platforms.unix; 24 }; 25 } 26
+1
pkgs/data/fonts/lmodern/lmmath.nix
··· 25 26 meta = { 27 description = "Latin Modern font"; 28 }; 29 } 30
··· 25 26 meta = { 27 description = "Latin Modern font"; 28 + platforms = stdenv.lib.platforms.unix; 29 }; 30 } 31
+1
pkgs/data/fonts/lohit-fonts/default.nix
··· 49 # Set a non-zero priority to allow easy overriding of the 50 # fontconfig configuration files. 51 priority = 5; 52 }; 53 }; 54
··· 49 # Set a non-zero priority to allow easy overriding of the 50 # fontconfig configuration files. 51 priority = 5; 52 + platforms = stdenv.lib.platforms.unix; 53 }; 54 }; 55
+4
pkgs/data/fonts/mph-2b-damase/default.nix
··· 18 mkdir -p $out/share/fonts/truetype 19 cp *.ttf $out/share/fonts/truetype 20 ''; 21 }
··· 18 mkdir -p $out/share/fonts/truetype 19 cp *.ttf $out/share/fonts/truetype 20 ''; 21 + 22 + meta = { 23 + platforms = stdenv.lib.platforms.unix; 24 + }; 25 }
+1
pkgs/data/fonts/nerdfonts/default.nix
··· 24 homepage = "https://github.com/ryanoasis/nerd-fonts"; 25 license = licenses.mit; 26 maintainers = with maintainers; [ garbas ]; 27 }; 28 }
··· 24 homepage = "https://github.com/ryanoasis/nerd-fonts"; 25 license = licenses.mit; 26 maintainers = with maintainers; [ garbas ]; 27 + platforms = with platforms; unix; 28 }; 29 }
+1
pkgs/data/fonts/redhat-liberation-fonts/default.nix
··· 37 maintainers = [ 38 maintainers.raskin 39 ]; 40 }; 41 }
··· 37 maintainers = [ 38 maintainers.raskin 39 ]; 40 + platforms = platforms.unix; 41 }; 42 }
+1
pkgs/data/fonts/source-han-sans/default.nix
··· 26 description = "${language} subset of an open source Pan-CJK typeface"; 27 homepage = https://github.com/adobe-fonts/source-han-sans; 28 license = stdenv.lib.licenses.asl20; 29 }; 30 }; 31 in
··· 26 description = "${language} subset of an open source Pan-CJK typeface"; 27 homepage = https://github.com/adobe-fonts/source-han-sans; 28 license = stdenv.lib.licenses.asl20; 29 + platforms = stdenv.lib.platforms.unix; 30 }; 31 }; 32 in
+1
pkgs/data/fonts/tipa/default.nix
··· 18 19 meta = { 20 description = "Phonetic font for TeX"; 21 }; 22 } 23
··· 18 19 meta = { 20 description = "Phonetic font for TeX"; 21 + platforms = stdenv.lib.platforms.unix; 22 }; 23 } 24
+4
pkgs/data/fonts/ttf-bitstream-vera/default.nix
··· 15 mkdir -p $fontDir 16 cp *.ttf $fontDir 17 ''; 18 }
··· 15 mkdir -p $fontDir 16 cp *.ttf $fontDir 17 ''; 18 + 19 + meta = { 20 + platforms = stdenv.lib.platforms.unix; 21 + }; 22 }
+1
pkgs/data/fonts/vista-fonts/default.nix
··· 39 # Set a non-zero priority to allow easy overriding of the 40 # fontconfig configuration files. 41 priority = 5; 42 }; 43 }
··· 39 # Set a non-zero priority to allow easy overriding of the 40 # fontconfig configuration files. 41 priority = 5; 42 + platforms = stdenv.lib.platforms.unix; 43 }; 44 }
+1
pkgs/data/misc/media-player-info/default.nix
··· 28 homepage = "http://www.freedesktop.org/wiki/Software/media-player-info/"; 29 license = licenses.bsd3; 30 maintainers = with maintainers; [ ttuegel ]; 31 }; 32 }
··· 28 homepage = "http://www.freedesktop.org/wiki/Software/media-player-info/"; 29 license = licenses.bsd3; 30 maintainers = with maintainers; [ ttuegel ]; 31 + platforms = with platforms; linux; 32 }; 33 }
+1
pkgs/data/misc/miscfiles/default.nix
··· 13 license = licenses.gpl2Plus; 14 description = "Collection of files not of crucial importance for sysadmins"; 15 maintainers = with maintainers; [ pSub ]; 16 }; 17 }
··· 13 license = licenses.gpl2Plus; 14 description = "Collection of files not of crucial importance for sysadmins"; 15 maintainers = with maintainers; [ pSub ]; 16 + platforms = with platforms; unix; 17 }; 18 }
+1
pkgs/data/misc/shared-mime-info/default.nix
··· 19 description = "A database of common MIME types"; 20 homepage = http://freedesktop.org/wiki/Software/shared-mime-info; 21 license = stdenv.lib.licenses.gpl2Plus; 22 }; 23 }
··· 19 description = "A database of common MIME types"; 20 homepage = http://freedesktop.org/wiki/Software/shared-mime-info; 21 license = stdenv.lib.licenses.gpl2Plus; 22 + platforms = stdenv.lib.platforms.unix; 23 }; 24 }
+1
pkgs/data/misc/sound-theme-freedesktop/default.nix
··· 17 # See http://cgit.freedesktop.org/sound-theme-freedesktop/tree/CREDITS: 18 license = with licenses; [ cc-by-30 cc-by-sa-25 gpl2 gpl2Plus ]; 19 maintainers = with maintainers; [ nckx ]; 20 }; 21 }
··· 17 # See http://cgit.freedesktop.org/sound-theme-freedesktop/tree/CREDITS: 18 license = with licenses; [ cc-by-30 cc-by-sa-25 gpl2 gpl2Plus ]; 19 maintainers = with maintainers; [ nckx ]; 20 + platforms = with platforms; unix; 21 }; 22 }
+4
pkgs/data/sgml+xml/schemas/sgml-dtd/docbook/3.1.nix
··· 30 unzip ${isoents} 31 sed -e "s/iso-/ISO/" -e "s/.gml//" -i docbook.cat 32 ''; 33 }
··· 30 unzip ${isoents} 31 sed -e "s/iso-/ISO/" -e "s/.gml//" -i docbook.cat 32 ''; 33 + 34 + meta = { 35 + platforms = stdenv.lib.platforms.unix; 36 + }; 37 }
+4
pkgs/data/sgml+xml/schemas/sgml-dtd/docbook/4.1.nix
··· 30 unzip ${isoents} 31 sed -e "s/iso-/ISO/" -e "s/.gml//" -i docbook.cat 32 ''; 33 }
··· 30 unzip ${isoents} 31 sed -e "s/iso-/ISO/" -e "s/.gml//" -i docbook.cat 32 ''; 33 + 34 + meta = { 35 + platforms = stdenv.lib.platforms.unix; 36 + }; 37 }
+4
pkgs/data/sgml+xml/schemas/xml-dtd/docbook-ebnf/default.nix
··· 10 md5 = "e50f7d38caf4285965c7a247e026fa7c"; 11 }; 12 catalog = ./docbook-ebnf.cat; 13 }
··· 10 md5 = "e50f7d38caf4285965c7a247e026fa7c"; 11 }; 12 catalog = ./docbook-ebnf.cat; 13 + 14 + meta = { 15 + platforms = stdenv.lib.platforms.unix; 16 + }; 17 }
+1
pkgs/data/sgml+xml/schemas/xml-dtd/xhtml1/default.nix
··· 27 meta = { 28 homepage = http://www.w3.org/TR/xhtml1/; 29 description = "DTDs for XHTML 1.0, the Extensible HyperText Markup Language"; 30 }; 31 }
··· 27 meta = { 28 homepage = http://www.w3.org/TR/xhtml1/; 29 description = "DTDs for XHTML 1.0, the Extensible HyperText Markup Language"; 30 + platforms = stdenv.lib.platforms.unix; 31 }; 32 }
+1
pkgs/desktops/xfce/applications/terminal.nix
··· 19 homepage = http://www.xfce.org/projects/terminal; 20 description = "A modern terminal emulator primarily for the Xfce desktop environment"; 21 license = stdenv.lib.licenses.gpl2Plus; 22 }; 23 }
··· 19 homepage = http://www.xfce.org/projects/terminal; 20 description = "A modern terminal emulator primarily for the Xfce desktop environment"; 21 license = stdenv.lib.licenses.gpl2Plus; 22 + platforms = stdenv.lib.platforms.linux; 23 }; 24 }
+1
pkgs/desktops/xfce/core/libxfcegui4.nix
··· 32 homepage = http://www.xfce.org/; 33 description = "Basic GUI library for Xfce"; 34 license = stdenv.lib.licenses.lgpl2Plus; 35 }; 36 }
··· 32 homepage = http://www.xfce.org/; 33 description = "Basic GUI library for Xfce"; 34 license = stdenv.lib.licenses.lgpl2Plus; 35 + platforms = stdenv.lib.platforms.linux; 36 }; 37 }
+1
pkgs/desktops/xfce/core/xfce4-dev-tools.nix
··· 21 homepage = http://foo-projects.org/~benny/projects/xfce4-dev-tools/; 22 description = "Tools and M4 macros for Xfce4 developers"; 23 license = stdenv.lib.licenses.gpl2Plus; 24 }; 25 } 26
··· 21 homepage = http://foo-projects.org/~benny/projects/xfce4-dev-tools/; 22 description = "Tools and M4 macros for Xfce4 developers"; 23 license = stdenv.lib.licenses.gpl2Plus; 24 + platforms = stdenv.lib.platforms.linux; 25 }; 26 } 27
+6 -5
pkgs/development/arduino/platformio/chrootenv.nix
··· 22 python27Packages.platformio 23 ]); 24 25 - meta = with stdenv.lib; { 26 - description = "An open source ecosystem for IoT development"; 27 - homepage = http://platformio.org; 28 - maintainers = with maintainers; [ mog ]; 29 - license = licenses.asl20; 30 }; 31 32 runScript = "platformio";
··· 22 python27Packages.platformio 23 ]); 24 25 + meta = with stdenv.lib; { 26 + description = "An open source ecosystem for IoT development"; 27 + homepage = http://platformio.org; 28 + maintainers = with maintainers; [ mog ]; 29 + license = licenses.asl20; 30 + platforms = with platforms; linux; 31 }; 32 33 runScript = "platformio";
+4
pkgs/development/beam-modules/hex-registry-snapshot.nix
··· 20 setupHook = writeText "setupHook.sh" '' 21 export HEX_REGISTRY_SNAPSHOT="$1/var/hex/registry.ets" 22 ''; 23 }
··· 20 setupHook = writeText "setupHook.sh" '' 21 export HEX_REGISTRY_SNAPSHOT="$1/var/hex/registry.ets" 22 ''; 23 + 24 + meta = { 25 + platforms = stdenv.lib.platforms.unix; 26 + }; 27 }
+1
pkgs/development/compilers/adobe-flex-sdk/default.nix
··· 36 description = "Flex SDK for Adobe Flash / ActionScript"; 37 homepage = "http://www.adobe.com/support/documentation/en/flex/3/releasenotes_flex3_sdk.html#installation"; 38 license = stdenv.lib.licenses.mpl11; 39 }; 40 }
··· 36 description = "Flex SDK for Adobe Flash / ActionScript"; 37 homepage = "http://www.adobe.com/support/documentation/en/flex/3/releasenotes_flex3_sdk.html#installation"; 38 license = stdenv.lib.licenses.mpl11; 39 + platforms = stdenv.lib.platforms.unix; 40 }; 41 }
+1
pkgs/development/compilers/arachne-pnr/default.nix
··· 31 homepage = https://github.com/cseed/arachne-pnr; 32 license = stdenv.lib.licenses.gpl2; 33 maintainers = [ stdenv.lib.maintainers.shell ]; 34 }; 35 }
··· 31 homepage = https://github.com/cseed/arachne-pnr; 32 license = stdenv.lib.licenses.gpl2; 33 maintainers = [ stdenv.lib.maintainers.shell ]; 34 + platforms = stdenv.lib.platforms.linux; 35 }; 36 }
+1
pkgs/development/compilers/as31/default.nix
··· 26 homepage = "http://wiki.erazor-zone.de/wiki:projects:linux:as31"; 27 description = "An 8031/8051 assembler by Ken Stauffer and Theo Deraadt which produces a variety of object code output formats"; 28 maintainers = with maintainers; [ aneeshusa ]; 29 }; 30 }
··· 26 homepage = "http://wiki.erazor-zone.de/wiki:projects:linux:as31"; 27 description = "An 8031/8051 assembler by Ken Stauffer and Theo Deraadt which produces a variety of object code output formats"; 28 maintainers = with maintainers; [ aneeshusa ]; 29 + platforms = with platforms; unix; 30 }; 31 }
+1
pkgs/development/compilers/aspectj/default.nix
··· 15 meta = { 16 homepage = http://www.eclipse.org/aspectj/; 17 description = "A seamless aspect-oriented extension to the Java programming language"; 18 }; 19 }
··· 15 meta = { 16 homepage = http://www.eclipse.org/aspectj/; 17 description = "A seamless aspect-oriented extension to the Java programming language"; 18 + platforms = stdenv.lib.platforms.unix; 19 }; 20 }
+1
pkgs/development/compilers/cmdstan/default.nix
··· 37 ''; 38 homepage = http://mc-stan.org/interfaces/cmdstan.html; 39 license = stdenv.lib.licenses.bsd3; 40 }; 41 }
··· 37 ''; 38 homepage = http://mc-stan.org/interfaces/cmdstan.html; 39 license = stdenv.lib.licenses.bsd3; 40 + platforms = stdenv.lib.platforms.linux; 41 }; 42 }
+1
pkgs/development/compilers/cmucl/binary.nix
··· 38 license = stdenv.lib.licenses.free; # public domain 39 homepage = http://www.cons.org/cmucl/; 40 maintainers = [stdenv.lib.maintainers.tohl]; 41 }; 42 }
··· 38 license = stdenv.lib.licenses.free; # public domain 39 homepage = http://www.cons.org/cmucl/; 40 maintainers = [stdenv.lib.maintainers.tohl]; 41 + platforms = stdenv.lib.platforms.linux; 42 }; 43 }
+1
pkgs/development/compilers/dev86/default.nix
··· 16 meta = { 17 description = "Linux 8086 development environment"; 18 homepage = http://v3.sk/~lkundrak/dev86/; 19 }; 20 }
··· 16 meta = { 17 description = "Linux 8086 development environment"; 18 homepage = http://v3.sk/~lkundrak/dev86/; 19 + platforms = stdenv.lib.platforms.linux; 20 }; 21 }
+1
pkgs/development/compilers/gwt/2.4.0.nix
··· 19 meta = { 20 homepage = http://code.google.com/webtoolkit/; 21 description = "A development toolkit for building and optimizing complex browser-based applications"; 22 }; 23 }
··· 19 meta = { 20 homepage = http://code.google.com/webtoolkit/; 21 description = "A development toolkit for building and optimizing complex browser-based applications"; 22 + platforms = stdenv.lib.platforms.unix; 23 }; 24 }
+1
pkgs/development/compilers/iasl/default.nix
··· 24 description = "Intel ACPI Compiler"; 25 homepage = http://www.acpica.org/; 26 license = stdenv.lib.licenses.iasl; 27 }; 28 }
··· 24 description = "Intel ACPI Compiler"; 25 homepage = http://www.acpica.org/; 26 license = stdenv.lib.licenses.iasl; 27 + platforms = stdenv.lib.platforms.linux; 28 }; 29 }
+4
pkgs/development/compilers/jikes/default.nix
··· 6 url = mirror://sourceforge/jikes/jikes-1.22.tar.bz2; 7 md5 = "cda958c7fef6b43b803e1d1ef9afcb85"; 8 }; 9 }
··· 6 url = mirror://sourceforge/jikes/jikes-1.22.tar.bz2; 7 md5 = "cda958c7fef6b43b803e1d1ef9afcb85"; 8 }; 9 + 10 + meta = { 11 + platforms = stdenv.lib.platforms.unix; 12 + }; 13 }
+4
pkgs/development/compilers/meta-environment/meta-build-env/default.nix
··· 4 url = http://www.meta-environment.org/releases/meta-build-env-0.1.tar.gz ; 5 md5 = "827b54ace4e2d3c8e7605ea149b34293"; 6 }; 7 }
··· 4 url = http://www.meta-environment.org/releases/meta-build-env-0.1.tar.gz ; 5 md5 = "827b54ace4e2d3c8e7605ea149b34293"; 6 }; 7 + 8 + meta = { 9 + platforms = stdenv.lib.platforms.unix; 10 + }; 11 }
+4
pkgs/development/compilers/ocaml/3.08.0.nix
··· 12 configureFlags = ["-no-tk" "-x11lib" xlibsWrapper]; 13 buildFlags = ["world" "bootstrap" "opt"]; 14 checkTarget = ["opt.opt"]; 15 }
··· 12 configureFlags = ["-no-tk" "-x11lib" xlibsWrapper]; 13 buildFlags = ["world" "bootstrap" "opt"]; 14 checkTarget = ["opt.opt"]; 15 + 16 + meta = { 17 + platforms = stdenv.lib.platforms.linux; 18 + }; 19 }
+1
pkgs/development/compilers/ocaml/3.10.0.nix
··· 27 homepage = http://caml.inria.fr/ocaml; 28 license = with stdenv.lib.licenses; [ qpl lgpl2 ]; 29 description = "Most popular variant of the Caml language"; 30 }; 31 32 })
··· 27 homepage = http://caml.inria.fr/ocaml; 28 license = with stdenv.lib.licenses; [ qpl lgpl2 ]; 29 description = "Most popular variant of the Caml language"; 30 + platforms = stdenv.lib.platforms.linux; 31 }; 32 33 })
+1
pkgs/development/compilers/opendylan/bin.nix
··· 37 homepage = http://opendylan.org; 38 description = "A multi-paradigm functional and object-oriented programming language"; 39 license = stdenv.lib.licenses.mit; 40 }; 41 }
··· 37 homepage = http://opendylan.org; 38 description = "A multi-paradigm functional and object-oriented programming language"; 39 license = stdenv.lib.licenses.mit; 40 + platforms = stdenv.lib.platforms.linux; 41 }; 42 }
+1
pkgs/development/compilers/ponyc/default.nix
··· 49 homepage = http://www.ponylang.org; 50 license = stdenv.lib.licenses.bsd2; 51 maintainers = [ stdenv.lib.maintainers.doublec ]; 52 }; 53 }
··· 49 homepage = http://www.ponylang.org; 50 license = stdenv.lib.licenses.bsd2; 51 maintainers = [ stdenv.lib.maintainers.doublec ]; 52 + platforms = stdenv.lib.platforms.linux; 53 }; 54 }
+1
pkgs/development/compilers/serpent/default.nix
··· 33 homepage = https://github.com/ethereum/wiki/wiki/Serpent; 34 license = with licenses; [ wtfpl ]; 35 maintainers = with maintainers; [ chris-martin ]; 36 }; 37 }
··· 33 homepage = https://github.com/ethereum/wiki/wiki/Serpent; 34 license = with licenses; [ wtfpl ]; 35 maintainers = with maintainers; [ chris-martin ]; 36 + platforms = with platforms; linux; 37 }; 38 }
+1 -1
pkgs/development/compilers/swi-prolog/default.nix
··· 28 description = "A Prolog compiler and interpreter"; 29 license = "LGPL"; 30 31 - hydraPlatforms = stdenv.lib.platforms.linux; 32 maintainers = [ stdenv.lib.maintainers.peti ]; 33 }; 34 }
··· 28 description = "A Prolog compiler and interpreter"; 29 license = "LGPL"; 30 31 + platforms = stdenv.lib.platforms.linux; 32 maintainers = [ stdenv.lib.maintainers.peti ]; 33 }; 34 }
+1
pkgs/development/compilers/yosys/default.nix
··· 45 homepage = http://www.clifford.at/yosys/; 46 license = stdenv.lib.licenses.isc; 47 maintainers = [ stdenv.lib.maintainers.shell ]; 48 }; 49 }
··· 45 homepage = http://www.clifford.at/yosys/; 46 license = stdenv.lib.licenses.isc; 47 maintainers = [ stdenv.lib.maintainers.shell ]; 48 + platforms = stdenv.lib.platforms.linux; 49 }; 50 }
+1
pkgs/development/guile-modules/guile-cairo/default.nix
··· 32 homepage = http://home.gna.org/guile-cairo/; 33 34 maintainers = [ ]; 35 }; 36 }
··· 32 homepage = http://home.gna.org/guile-cairo/; 33 34 maintainers = [ ]; 35 + platforms = stdenv.lib.platforms.linux; 36 }; 37 }
+1
pkgs/development/guile-modules/guile-gnome/default.nix
··· 53 license = licenses.gpl2Plus; 54 55 maintainers = with maintainers; [ taktoa amiloradovsky ]; 56 }; 57 }
··· 53 license = licenses.gpl2Plus; 54 55 maintainers = with maintainers; [ taktoa amiloradovsky ]; 56 + platforms = with platforms; linux; 57 }; 58 }
+1
pkgs/development/interpreters/ceptre/default.nix
··· 20 description = "A linear logic programming language for modeling generative interactive systems"; 21 homepage = https://github.com/chrisamaphone/interactive-lp; 22 maintainers = with maintainers; [ pSub ]; 23 }; 24 }
··· 20 description = "A linear logic programming language for modeling generative interactive systems"; 21 homepage = https://github.com/chrisamaphone/interactive-lp; 22 maintainers = with maintainers; [ pSub ]; 23 + platforms = with platforms; linux; 24 }; 25 }
+1
pkgs/development/interpreters/clojure/default.nix
··· 44 system that ensure clean, correct, multithreaded designs. 45 ''; 46 maintainers = with stdenv.lib.maintainers; [ the-kenny ]; 47 }; 48 }
··· 44 system that ensure clean, correct, multithreaded designs. 45 ''; 46 maintainers = with stdenv.lib.maintainers; [ the-kenny ]; 47 + platforms = with stdenv.lib.platforms; unix; 48 }; 49 }
+1
pkgs/development/interpreters/falcon/default.nix
··· 17 description = "Programming language with macros and syntax at once"; 18 license = licenses.gpl2; 19 maintainers = with maintainers; [ pSub ]; 20 }; 21 }
··· 17 description = "Programming language with macros and syntax at once"; 18 license = licenses.gpl2; 19 maintainers = with maintainers; [ pSub ]; 20 + platforms = with platforms; linux; 21 }; 22 }
+1
pkgs/development/interpreters/groovy/default.nix
··· 34 homepage = http://groovy-lang.org/; 35 license = licenses.asl20; 36 maintainers = with maintainers; [ pSub ]; 37 }; 38 }
··· 34 homepage = http://groovy-lang.org/; 35 license = licenses.asl20; 36 maintainers = with maintainers; [ pSub ]; 37 + platforms = with platforms; unix; 38 }; 39 }
+1
pkgs/development/interpreters/gtk-server/default.nix
··· 18 homepage = "http://www.gtk-server.org/"; 19 license = stdenv.lib.licenses.gpl2Plus; 20 maintainers = [stdenv.lib.maintainers.tohl]; 21 }; 22 }
··· 18 homepage = "http://www.gtk-server.org/"; 19 license = stdenv.lib.licenses.gpl2Plus; 20 maintainers = [stdenv.lib.maintainers.tohl]; 21 + platforms = stdenv.lib.platforms.linux; 22 }; 23 }
+1
pkgs/development/interpreters/guile/1.8.nix
··· 54 license = stdenv.lib.licenses.lgpl2Plus; 55 56 maintainers = [ stdenv.lib.maintainers.ludo ]; 57 }; 58 }
··· 54 license = stdenv.lib.licenses.lgpl2Plus; 55 56 maintainers = [ stdenv.lib.maintainers.ludo ]; 57 + platforms = stdenv.lib.platforms.unix; 58 }; 59 }
+1
pkgs/development/interpreters/jruby/default.nix
··· 28 description = "Ruby interpreter written in Java"; 29 homepage = http://jruby.org/; 30 license = with stdenv.lib.licenses; [ cpl10 gpl2 lgpl21 ]; 31 }; 32 }
··· 28 description = "Ruby interpreter written in Java"; 29 homepage = http://jruby.org/; 30 license = with stdenv.lib.licenses; [ cpl10 gpl2 lgpl21 ]; 31 + platforms = stdenv.lib.platforms.unix; 32 }; 33 }
+1
pkgs/development/interpreters/lolcode/default.nix
··· 25 ''; 26 license = licenses.gpl3; 27 maintainers = [ maintainers.AndersonTorres ]; 28 }; 29 30 }
··· 25 ''; 26 license = licenses.gpl3; 27 maintainers = [ maintainers.AndersonTorres ]; 28 + platforms = stdenv.lib.platforms.unix; 29 }; 30 31 }
+1
pkgs/development/interpreters/lua-5/5.0.3.nix
··· 25 for configuration, scripting, and rapid prototyping. 26 ''; 27 license = stdenv.lib.licenses.mit; 28 }; 29 }
··· 25 for configuration, scripting, and rapid prototyping. 26 ''; 27 license = stdenv.lib.licenses.mit; 28 + platforms = stdenv.lib.platforms.linux; 29 }; 30 }
+1 -1
pkgs/development/interpreters/lua-5/5.2.nix
··· 97 for configuration, scripting, and rapid prototyping. 98 ''; 99 license = stdenv.lib.licenses.mit; 100 - hydraPlatforms = stdenv.lib.platforms.linux; 101 }; 102 }
··· 97 for configuration, scripting, and rapid prototyping. 98 ''; 99 license = stdenv.lib.licenses.mit; 100 + platforms = stdenv.lib.platforms.unix; 101 }; 102 }
+1 -1
pkgs/development/interpreters/lua-5/5.3.nix
··· 96 for configuration, scripting, and rapid prototyping. 97 ''; 98 license = stdenv.lib.licenses.mit; 99 - hydraPlatforms = stdenv.lib.platforms.linux; 100 }; 101 }
··· 96 for configuration, scripting, and rapid prototyping. 97 ''; 98 license = stdenv.lib.licenses.mit; 99 + platforms = stdenv.lib.platforms.unix; 100 }; 101 }
+1 -1
pkgs/development/interpreters/lua-5/expat.nix
··· 20 21 meta = { 22 homepage = "http://matthewwild.co.uk/projects/luaexpat"; 23 - hydraPlatforms = stdenv.lib.platforms.linux; 24 maintainers = [ stdenv.lib.maintainers.flosse ]; 25 }; 26 }
··· 20 21 meta = { 22 homepage = "http://matthewwild.co.uk/projects/luaexpat"; 23 + platforms = stdenv.lib.platforms.linux; 24 maintainers = [ stdenv.lib.maintainers.flosse ]; 25 }; 26 }
+1 -1
pkgs/development/interpreters/lua-5/sec.nix
··· 23 24 meta = { 25 homepage = "https://github.com/brunoos/luasec"; 26 - hydraPlatforms = stdenv.lib.platforms.linux; 27 maintainers = [ stdenv.lib.maintainers.flosse ]; 28 }; 29 }
··· 23 24 meta = { 25 homepage = "https://github.com/brunoos/luasec"; 26 + platforms = stdenv.lib.platforms.linux; 27 maintainers = [ stdenv.lib.maintainers.flosse ]; 28 }; 29 }
+1 -1
pkgs/development/interpreters/maude/default.nix
··· 48 rewriting logic computation. 49 ''; 50 51 - hydraPlatforms = stdenv.lib.platforms.linux; 52 maintainers = [ stdenv.lib.maintainers.peti ]; 53 }; 54 }
··· 48 rewriting logic computation. 49 ''; 50 51 + platforms = stdenv.lib.platforms.linux; 52 maintainers = [ stdenv.lib.maintainers.peti ]; 53 }; 54 }
+1 -1
pkgs/development/interpreters/picolisp/default.nix
··· 41 description = "A simple Lisp with an integrated database"; 42 homepage = http://picolisp.com/; 43 license = licenses.mit; 44 - platform = platforms.all; 45 maintainers = with maintainers; [ raskin tohl ]; 46 }; 47
··· 41 description = "A simple Lisp with an integrated database"; 42 homepage = http://picolisp.com/; 43 license = licenses.mit; 44 + platforms = platforms.all; 45 maintainers = with maintainers; [ raskin tohl ]; 46 }; 47
+1
pkgs/development/interpreters/pixie/dust.nix
··· 30 description = "Provides tooling around pixie, e.g. a nicer repl, running tests and fetching dependencies"; 31 homepage = src.meta.homepage; 32 license = stdenv.lib.licenses.lgpl3; 33 }; 34 }
··· 30 description = "Provides tooling around pixie, e.g. a nicer repl, running tests and fetching dependencies"; 31 homepage = src.meta.homepage; 32 license = stdenv.lib.licenses.lgpl3; 33 + platforms = stdenv.lib.platforms.linux; 34 }; 35 }
+1
pkgs/development/interpreters/qnial/default.nix
··· 35 homepage = http://www.nial.com; 36 license = stdenv.lib.licenses.artistic1; 37 maintainers = [ stdenv.lib.maintainers.vrthra ]; 38 }; 39 }
··· 35 homepage = http://www.nial.com; 36 license = stdenv.lib.licenses.artistic1; 37 maintainers = [ stdenv.lib.maintainers.vrthra ]; 38 + platforms = stdenv.lib.platforms.linux; 39 }; 40 }
+1
pkgs/development/interpreters/rascal/default.nix
··· 24 description = "Command-line REPL for the Rascal metaprogramming language"; 25 license = stdenv.lib.licenses.epl10; 26 maintainers = [ stdenv.lib.maintainers.eelco ]; 27 }; 28 }
··· 24 description = "Command-line REPL for the Rascal metaprogramming language"; 25 license = stdenv.lib.licenses.epl10; 26 maintainers = [ stdenv.lib.maintainers.eelco ]; 27 + platforms = stdenv.lib.platforms.unix; 28 }; 29 }
+1
pkgs/development/interpreters/scheme48/default.nix
··· 7 homepage = http://s48.org/; 8 description = "Scheme 48"; 9 maintainers = with stdenv.lib.maintainers; [ the-kenny ]; 10 }; 11 12 src = fetchurl {
··· 7 homepage = http://s48.org/; 8 description = "Scheme 48"; 9 maintainers = with stdenv.lib.maintainers; [ the-kenny ]; 10 + platforms = with stdenv.lib.platforms; unix; 11 }; 12 13 src = fetchurl {
+1
pkgs/development/interpreters/scsh/default.nix
··· 19 homepage = http://www.scsh.net/; 20 license = licenses.bsd3; 21 maintainers = with maintainers; [ joachifm ]; 22 }; 23 }
··· 19 homepage = http://www.scsh.net/; 20 license = licenses.bsd3; 21 maintainers = with maintainers; [ joachifm ]; 22 + platforms = with platforms; unix; 23 }; 24 }
+4
pkgs/development/interpreters/spidermonkey/1.8.0-rc1.nix
··· 27 ''; 28 29 makeFlags = "-f ${makefile} JS_DIST=\${out} BUILD_OPT=1 JS_READLINE=1 JS_THREADSAFE=1"; 30 }
··· 27 ''; 28 29 makeFlags = "-f ${makefile} JS_DIST=\${out} BUILD_OPT=1 JS_READLINE=1 JS_THREADSAFE=1"; 30 + 31 + meta = { 32 + platforms = stdenv.lib.platforms.linux; 33 + }; 34 }
+1
pkgs/development/interpreters/spidermonkey/17.0.nix
··· 64 homepage = https://developer.mozilla.org/en/SpiderMonkey; 65 # TODO: MPL/GPL/LGPL tri-license. 66 maintainers = [ maintainers.goibhniu ]; 67 }; 68 } 69
··· 64 homepage = https://developer.mozilla.org/en/SpiderMonkey; 65 # TODO: MPL/GPL/LGPL tri-license. 66 maintainers = [ maintainers.goibhniu ]; 67 + platforms = platforms.linux; 68 }; 69 } 70
+1
pkgs/development/interpreters/spidermonkey/185-1.0.0.nix
··· 63 homepage = https://developer.mozilla.org/en/SpiderMonkey; 64 # TODO: MPL/GPL/LGPL tri-license. 65 maintainers = [ maintainers.goibhniu ]; 66 }; 67 } 68
··· 63 homepage = https://developer.mozilla.org/en/SpiderMonkey; 64 # TODO: MPL/GPL/LGPL tri-license. 65 maintainers = [ maintainers.goibhniu ]; 66 + platforms = platforms.linux; 67 }; 68 } 69
+1
pkgs/development/interpreters/spidermonkey/24.2.nix
··· 55 homepage = https://developer.mozilla.org/en/SpiderMonkey; 56 # TODO: MPL/GPL/LGPL tri-license. 57 maintainers = [ maintainers.goibhniu ]; 58 }; 59 } 60
··· 55 homepage = https://developer.mozilla.org/en/SpiderMonkey; 56 # TODO: MPL/GPL/LGPL tri-license. 57 maintainers = [ maintainers.goibhniu ]; 58 + platforms = platforms.linux; 59 }; 60 } 61
+1
pkgs/development/interpreters/spidermonkey/31.5.nix
··· 56 # TODO: MPL/GPL/LGPL tri-license. 57 58 maintainers = [ maintainers.goibhniu ]; 59 }; 60 }
··· 56 # TODO: MPL/GPL/LGPL tri-license. 57 58 maintainers = [ maintainers.goibhniu ]; 59 + platforms = platforms.linux; 60 }; 61 }
+13 -18
pkgs/development/interpreters/supercollider/default.nix
··· 1 { stdenv, fetchurl, cmake, pkgconfig 2 , libjack2, libsndfile, fftw, curl, gcc 3 - , libXt, qt, readline 4 , useSCEL ? false, emacs 5 }: 6 7 let optional = stdenv.lib.optional; 8 - ljack2 = libjack2.override { gcc = gcc; }; 9 in 10 11 stdenv.mkDerivation rec { 12 - name = "supercollider-3.6.6"; 13 14 - meta = { 15 - description = "Programming language for real time audio synthesis"; 16 - homepage = "http://supercollider.sourceforge.net/"; 17 - license = stdenv.lib.licenses.gpl3Plus; 18 - platforms = stdenv.lib.platforms.linux; 19 - }; 20 21 src = fetchurl { 22 - url = "mirror://sourceforge/supercollider/Source/3.6/SuperCollider-3.6.6-Source.tar.bz2"; 23 - sha256 = "11khrv6jchs0vv0lv43am8lp0x1rr3h6l2xj9dmwrxcpdayfbalr"; 24 }; 25 26 hardeningDisable = [ "stackprotector" ]; 27 28 - # QGtkStyle unavailable 29 - patchPhase = '' 30 - substituteInPlace editors/sc-ide/widgets/code_editor/autocompleter.cpp \ 31 - --replace Q_WS_X11 Q_GTK_STYLE 32 - ''; 33 - 34 cmakeFlags = '' 35 -DSC_WII=OFF 36 -DSC_EL=${if useSCEL then "ON" else "OFF"} ··· 39 nativeBuildInputs = [ cmake pkgconfig ]; 40 41 buildInputs = [ 42 - gcc ljack2 libsndfile fftw curl libXt qt readline ] 43 ++ optional useSCEL emacs; 44 }
··· 1 { stdenv, fetchurl, cmake, pkgconfig 2 , libjack2, libsndfile, fftw, curl, gcc 3 + , libXt, qt55, readline 4 , useSCEL ? false, emacs 5 }: 6 7 let optional = stdenv.lib.optional; 8 in 9 10 stdenv.mkDerivation rec { 11 + name = "supercollider-${version}"; 12 + version = "3.7.2"; 13 14 15 src = fetchurl { 16 + url = "https://github.com/supercollider/supercollider/releases/download/Version-${version}/SuperCollider-${version}-Source-linux.tar.bz2"; 17 + sha256 = "1mybxcnl7flliz74kdfnvh18v5dwd9zbdsw2kc7wpl4idcly1n0s"; 18 }; 19 20 hardeningDisable = [ "stackprotector" ]; 21 22 cmakeFlags = '' 23 -DSC_WII=OFF 24 -DSC_EL=${if useSCEL then "ON" else "OFF"} ··· 27 nativeBuildInputs = [ cmake pkgconfig ]; 28 29 buildInputs = [ 30 + gcc libjack2 libsndfile fftw curl libXt qt55.qtwebkit qt55.qttools readline ] 31 ++ optional useSCEL emacs; 32 + 33 + meta = { 34 + description = "Programming language for real time audio synthesis"; 35 + homepage = "http://supercollider.sourceforge.net/"; 36 + license = stdenv.lib.licenses.gpl3Plus; 37 + platforms = stdenv.lib.platforms.linux; 38 + }; 39 }
+1
pkgs/development/libraries/SDL2_mixer/default.nix
··· 16 17 meta = { 18 description = "SDL multi-channel audio mixer library"; 19 }; 20 }
··· 16 17 meta = { 18 description = "SDL multi-channel audio mixer library"; 19 + platforms = stdenv.lib.platforms.linux; 20 }; 21 }
+1
pkgs/development/libraries/SDL2_ttf/default.nix
··· 14 15 meta = { 16 description = "SDL TrueType library"; 17 }; 18 }
··· 14 15 meta = { 16 description = "SDL TrueType library"; 17 + platforms = stdenv.lib.platforms.linux; 18 }; 19 }
+1
pkgs/development/libraries/SDL_net/default.nix
··· 26 27 meta = { 28 description = "SDL networking library"; 29 }; 30 }
··· 26 27 meta = { 28 description = "SDL networking library"; 29 + platforms = stdenv.lib.platforms.unix; 30 }; 31 }
+1
pkgs/development/libraries/SDL_sound/default.nix
··· 14 15 meta = { 16 description = "SDL sound library"; 17 }; 18 }
··· 14 15 meta = { 16 description = "SDL sound library"; 17 + platforms = stdenv.lib.platforms.linux; 18 }; 19 }
+1
pkgs/development/libraries/Xaw3d/default.nix
··· 13 14 meta = { 15 description = "3D widget set based on the Athena Widget set"; 16 }; 17 }
··· 13 14 meta = { 15 description = "3D widget set based on the Athena Widget set"; 16 + platforms = stdenv.lib.platforms.linux; 17 }; 18 }
+1
pkgs/development/libraries/a52dec/default.nix
··· 19 meta = { 20 description = "ATSC A/52 stream decoder"; 21 homepage = http://liba52.sourceforge.net/; 22 }; 23 }
··· 19 meta = { 20 description = "ATSC A/52 stream decoder"; 21 homepage = http://liba52.sourceforge.net/; 22 + platforms = stdenv.lib.platforms.unix; 23 }; 24 }
+1
pkgs/development/libraries/aacskeys/default.nix
··· 41 meta = { 42 homepage = http://forum.doom9.org/showthread.php?t=123311; 43 description = "A library and program to retrieve decryption keys for HD discs"; 44 }; 45 }
··· 41 meta = { 42 homepage = http://forum.doom9.org/showthread.php?t=123311; 43 description = "A library and program to retrieve decryption keys for HD discs"; 44 + platforms = stdenv.lib.platforms.linux; 45 }; 46 }
+1
pkgs/development/libraries/aalib/default.nix
··· 35 36 meta = { 37 description = "ASCII art graphics library"; 38 }; 39 }
··· 35 36 meta = { 37 description = "ASCII art graphics library"; 38 + platforms = stdenv.lib.platforms.unix; 39 }; 40 }
+1
pkgs/development/libraries/accounts-qt/default.nix
··· 23 homepage = "http://code.google.com/p/accounts-sso/"; 24 license = licenses.lgpl21; 25 maintainers = with maintainers; [ nckx ]; 26 }; 27 }
··· 23 homepage = "http://code.google.com/p/accounts-sso/"; 24 license = licenses.lgpl21; 25 maintainers = with maintainers; [ nckx ]; 26 + platforms = with platforms; linux; 27 }; 28 }
+1
pkgs/development/libraries/accountsservice/default.nix
··· 30 homepage = http://www.freedesktop.org/wiki/Software/AccountsService; 31 license = licenses.gpl3; 32 maintainers = with maintainers; [ pSub ]; 33 }; 34 }
··· 30 homepage = http://www.freedesktop.org/wiki/Software/AccountsService; 31 license = licenses.gpl3; 32 maintainers = with maintainers; [ pSub ]; 33 + platforms = with platforms; linux; 34 }; 35 }
+1
pkgs/development/libraries/agg/default.nix
··· 32 33 license = stdenv.lib.licenses.gpl2Plus; 34 homepage = http://www.antigrain.com/; 35 }; 36 }
··· 32 33 license = stdenv.lib.licenses.gpl2Plus; 34 homepage = http://www.antigrain.com/; 35 + platforms = stdenv.lib.platforms.linux; 36 }; 37 }
+1
pkgs/development/libraries/apache-activemq/default.nix
··· 24 homepage = http://activemq.apache.org/; 25 description = "Messaging and Integration Patterns server written in Java"; 26 license = stdenv.lib.licenses.asl20; 27 }; 28 29 }
··· 24 homepage = http://activemq.apache.org/; 25 description = "Messaging and Integration Patterns server written in Java"; 26 license = stdenv.lib.licenses.asl20; 27 + platforms = stdenv.lib.platforms.unix; 28 }; 29 30 }
+1
pkgs/development/libraries/apr-util/default.nix
··· 61 homepage = http://apr.apache.org/; 62 description = "A companion library to APR, the Apache Portable Runtime"; 63 maintainers = [ stdenv.lib.maintainers.eelco ]; 64 }; 65 }
··· 61 homepage = http://apr.apache.org/; 62 description = "A companion library to APR, the Apache Portable Runtime"; 63 maintainers = [ stdenv.lib.maintainers.eelco ]; 64 + platforms = stdenv.lib.platforms.unix; 65 }; 66 }
+1
pkgs/development/libraries/asio/default.nix
··· 15 homepage = http://asio.sourceforge.net/; 16 description = "Cross-platform C++ library for network and low-level I/O programming"; 17 license = stdenv.lib.licenses.boost; 18 }; 19 20 }
··· 15 homepage = http://asio.sourceforge.net/; 16 description = "Cross-platform C++ library for network and low-level I/O programming"; 17 license = stdenv.lib.licenses.boost; 18 + platforms = stdenv.lib.platforms.unix; 19 }; 20 21 }
+1 -2
pkgs/development/libraries/assimp/default.nix
··· 20 homepage = http://assimp.sourceforge.net/; 21 license = licenses.bsd3; 22 maintainers = with maintainers; [ ehmry ]; 23 - platfroms = [ platforms.linux platforms.darwin ]; 24 - inherit version; 25 }; 26 }
··· 20 homepage = http://assimp.sourceforge.net/; 21 license = licenses.bsd3; 22 maintainers = with maintainers; [ ehmry ]; 23 + platforms = platforms.unix; 24 }; 25 }
+1
pkgs/development/libraries/atkmm/default.nix
··· 21 description = "C++ wrappers for ATK accessibility toolkit"; 22 license = stdenv.lib.licenses.lgpl21Plus; 23 homepage = http://gtkmm.org; 24 }; 25 }
··· 21 description = "C++ wrappers for ATK accessibility toolkit"; 22 license = stdenv.lib.licenses.lgpl21Plus; 23 homepage = http://gtkmm.org; 24 + platforms = stdenv.lib.platforms.unix; 25 }; 26 }
+1
pkgs/development/libraries/audio/libbs2b/default.nix
··· 17 homepage = "http://bs2b.sourceforge.net/"; 18 description = "Bauer stereophonic-to-binaural DSP library"; 19 license = stdenv.lib.licenses.mit; 20 }; 21 }
··· 17 homepage = "http://bs2b.sourceforge.net/"; 18 description = "Bauer stereophonic-to-binaural DSP library"; 19 license = stdenv.lib.licenses.mit; 20 + platforms = stdenv.lib.platforms.unix; 21 }; 22 }
+1
pkgs/development/libraries/babl/default.nix
··· 12 description = "Image pixel format conversion library"; 13 homepage = http://gegl.org/babl/; 14 license = stdenv.lib.licenses.gpl3; 15 }; 16 }
··· 12 description = "Image pixel format conversion library"; 13 homepage = http://gegl.org/babl/; 14 license = stdenv.lib.licenses.gpl3; 15 + platforms = stdenv.lib.platforms.unix; 16 }; 17 }
+4
pkgs/development/libraries/beecrypt/default.nix
··· 8 }; 9 buildInputs = [m4]; 10 configureFlags = "--disable-optimized --enable-static"; 11 }
··· 8 }; 9 buildInputs = [m4]; 10 configureFlags = "--disable-optimized --enable-static"; 11 + 12 + meta = { 13 + platforms = stdenv.lib.platforms.linux; 14 + }; 15 }
+1
pkgs/development/libraries/biblesync/default.nix
··· 28 ''; 29 license = licenses.publicDomain; 30 maintainers = [ maintainers.AndersonTorres ]; 31 }; 32 }
··· 28 ''; 29 license = licenses.publicDomain; 30 maintainers = [ maintainers.AndersonTorres ]; 31 + platforms = stdenv.lib.platforms.linux; 32 }; 33 }
+4
pkgs/development/libraries/breakpad/default.nix
··· 21 cp -r $breakpad_lss src/third_party/lss 22 chmod +w -R src/third_party/lss 23 ''; 24 }
··· 21 cp -r $breakpad_lss src/third_party/lss 22 chmod +w -R src/third_party/lss 23 ''; 24 + 25 + meta = { 26 + platforms = stdenv.lib.platforms.unix; 27 + }; 28 }
+1
pkgs/development/libraries/bullet/bullet283.nix
··· 24 homepage = https://github.com/bulletphysics/bullet3; 25 license = stdenv.lib.licenses.zlib; 26 maintainers = with stdenv.lib.maintainers; [ aforemny ]; 27 }; 28 }
··· 24 homepage = https://github.com/bulletphysics/bullet3; 25 license = stdenv.lib.licenses.zlib; 26 maintainers = with stdenv.lib.maintainers; [ aforemny ]; 27 + platforms = with stdenv.lib.platforms; linux; 28 }; 29 }
+1
pkgs/development/libraries/bullet/default.nix
··· 26 homepage = http://code.google.com/p/bullet/; 27 license = stdenv.lib.licenses.zlib; 28 maintainers = with stdenv.lib.maintainers; [ aforemny ]; 29 }; 30 }
··· 26 homepage = http://code.google.com/p/bullet/; 27 license = stdenv.lib.licenses.zlib; 28 maintainers = with stdenv.lib.maintainers; [ aforemny ]; 29 + platforms = with stdenv.lib.platforms; linux; 30 }; 31 }
+1
pkgs/development/libraries/bwidget/default.nix
··· 26 homepage = "http://tcl.activestate.com/software/tcllib/"; 27 description = "High-level widget set for Tcl/Tk"; 28 license = stdenv.lib.licenses.tcltk; 29 }; 30 }
··· 26 homepage = "http://tcl.activestate.com/software/tcllib/"; 27 description = "High-level widget set for Tcl/Tk"; 28 license = stdenv.lib.licenses.tcltk; 29 + platforms = stdenv.lib.platforms.linux; 30 }; 31 }
+1
pkgs/development/libraries/cairomm/default.nix
··· 35 homepage = http://cairographics.org/; 36 37 license = with licenses; [ lgpl2Plus mpl10 ]; 38 }; 39 }
··· 35 homepage = http://cairographics.org/; 36 37 license = with licenses; [ lgpl2Plus mpl10 ]; 38 + platforms = platforms.linux; 39 }; 40 }
+1
pkgs/development/libraries/catch/default.nix
··· 32 homepage = "http://catch-lib.net"; 33 license = licenses.boost; 34 maintainers = with maintainers; [ edwtjo ]; 35 }; 36 }
··· 32 homepage = "http://catch-lib.net"; 33 license = licenses.boost; 34 maintainers = with maintainers; [ edwtjo ]; 35 + platforms = with platforms; unix; 36 }; 37 }
+1
pkgs/development/libraries/ceres-solver/default.nix
··· 47 homepage = "http://ceres-solver.org"; 48 maintainers = with stdenv.lib.maintainers; [ giogadi ]; 49 inherit version; 50 }; 51 }
··· 47 homepage = "http://ceres-solver.org"; 48 maintainers = with stdenv.lib.maintainers; [ giogadi ]; 49 inherit version; 50 + platforms = with stdenv.lib.platforms; unix; 51 }; 52 }
+1
pkgs/development/libraries/cfitsio/default.nix
··· 31 32 # Permissive BSD-style license. 33 license = "permissive"; 34 }; 35 }
··· 31 32 # Permissive BSD-style license. 33 license = "permissive"; 34 + platforms = stdenv.lib.platforms.unix; 35 }; 36 }
+1
pkgs/development/libraries/chmlib/default.nix
··· 12 homepage = http://www.jedrea.com/chmlib; 13 license = "LGPL"; 14 description = "A library for dealing with Microsoft ITSS/CHM format files"; 15 }; 16 }
··· 12 homepage = http://www.jedrea.com/chmlib; 13 license = "LGPL"; 14 description = "A library for dealing with Microsoft ITSS/CHM format files"; 15 + platforms = stdenv.lib.platforms.unix; 16 }; 17 }
+1
pkgs/development/libraries/cl/default.nix
··· 29 homepage = https://github.com/tonyrog/cl; 30 description = "OpenCL binding for Erlang"; 31 license = stdenv.lib.licenses.mit; 32 }; 33 }
··· 29 homepage = https://github.com/tonyrog/cl; 30 description = "OpenCL binding for Erlang"; 31 license = stdenv.lib.licenses.mit; 32 + platforms = stdenv.lib.platforms.linux; 33 }; 34 }
+1
pkgs/development/libraries/classads/default.nix
··· 20 homepage = http://www.cs.wisc.edu/condor/classad/; 21 description = "The Classified Advertisements library provides a generic means for matching resources"; 22 license = stdenv.lib.licenses.asl20; 23 }; 24 }
··· 20 homepage = http://www.cs.wisc.edu/condor/classad/; 21 description = "The Classified Advertisements library provides a generic means for matching resources"; 22 license = stdenv.lib.licenses.asl20; 23 + platforms = stdenv.lib.platforms.unix; 24 }; 25 }
+1
pkgs/development/libraries/clucene-core/2.x.nix
··· 39 CLucene is a port of the very popular Java Lucene text search engine API. 40 ''; 41 homepage = http://clucene.sourceforge.net; 42 }; 43 }
··· 39 CLucene is a port of the very popular Java Lucene text search engine API. 40 ''; 41 homepage = http://clucene.sourceforge.net; 42 + platforms = stdenv.lib.platforms.unix; 43 }; 44 }
+1
pkgs/development/libraries/clucene-core/default.nix
··· 21 CLucene is a port of the very popular Java Lucene text search engine API. 22 ''; 23 homepage = http://clucene.sourceforge.net; 24 }; 25 }
··· 21 CLucene is a port of the very popular Java Lucene text search engine API. 22 ''; 23 homepage = http://clucene.sourceforge.net; 24 + platforms = stdenv.lib.platforms.linux; 25 }; 26 }
+1
pkgs/development/libraries/cmark/default.nix
··· 15 description = "CommonMark parsing and rendering library and program in C"; 16 homepage = https://github.com/jgm/cmark; 17 maintainers = [ stdenv.lib.maintainers.michelk ]; 18 }; 19 }
··· 15 description = "CommonMark parsing and rendering library and program in C"; 16 homepage = https://github.com/jgm/cmark; 17 maintainers = [ stdenv.lib.maintainers.michelk ]; 18 + platforms = stdenv.lib.platforms.unix; 19 }; 20 }
+1
pkgs/development/libraries/cminpack/default.nix
··· 20 homepage = http://devernay.free.fr/hacks/cminpack/cminpack.html; 21 license = stdenv.lib.licenses.bsd3; 22 description = "Software for solving nonlinear equations and nonlinear least squares problems"; 23 }; 24 25 }
··· 20 homepage = http://devernay.free.fr/hacks/cminpack/cminpack.html; 21 license = stdenv.lib.licenses.bsd3; 22 description = "Software for solving nonlinear equations and nonlinear least squares problems"; 23 + platforms = stdenv.lib.platforms.linux; 24 }; 25 26 }
+1 -1
pkgs/development/libraries/cmocka/default.nix
··· 9 sha256 = "0fvm6rdalqcxckbddch8ycdw6n2ckldblv117n09chi2l7bm0q5k"; 10 }; 11 12 - buildInputs = [ cmake ]; 13 14 meta = with stdenv.lib; { 15 description = "Lightweight library to simplify and generalize unit tests for C";
··· 9 sha256 = "0fvm6rdalqcxckbddch8ycdw6n2ckldblv117n09chi2l7bm0q5k"; 10 }; 11 12 + nativeBuildInputs = [ cmake ]; 13 14 meta = with stdenv.lib; { 15 description = "Lightweight library to simplify and generalize unit tests for C";
+1
pkgs/development/libraries/confuse/default.nix
··· 11 homepage = http://www.nongnu.org/confuse/; 12 description = "Configuration file parser library"; 13 license = stdenv.lib.licenses.isc; 14 }; 15 }
··· 11 homepage = http://www.nongnu.org/confuse/; 12 description = "Configuration file parser library"; 13 license = stdenv.lib.licenses.isc; 14 + platforms = stdenv.lib.platforms.unix; 15 }; 16 }
+1
pkgs/development/libraries/cpptest/default.nix
··· 13 description = "Simple C++ unit testing framework"; 14 maintainers = with maintainers; [ bosu ]; 15 license = stdenv.lib.licenses.lgpl3; 16 }; 17 }
··· 13 description = "Simple C++ unit testing framework"; 14 maintainers = with maintainers; [ bosu ]; 15 license = stdenv.lib.licenses.lgpl3; 16 + platforms = with platforms; linux; 17 }; 18 }
+1
pkgs/development/libraries/ctpp2/default.nix
··· 20 description = "A high performance templating engine"; 21 homepage = http://ctpp.havoc.ru; 22 maintiainers = with stdenv.lib.maintainers; [ robbinch ]; 23 }; 24 }
··· 20 description = "A high performance templating engine"; 21 homepage = http://ctpp.havoc.ru; 22 maintiainers = with stdenv.lib.maintainers; [ robbinch ]; 23 + platforms = with stdenv.lib.platforms; linux; 24 }; 25 }
+1
pkgs/development/libraries/dbus-glib/default.nix
··· 30 license = with stdenv.lib.licenses; [ afl21 gpl2 ]; 31 description = "Obsolete glib bindings for D-Bus lightweight IPC mechanism"; 32 maintainers = [ stdenv.lib.maintainers.urkud ]; 33 }; 34 }
··· 30 license = with stdenv.lib.licenses; [ afl21 gpl2 ]; 31 description = "Obsolete glib bindings for D-Bus lightweight IPC mechanism"; 32 maintainers = [ stdenv.lib.maintainers.urkud ]; 33 + platforms = stdenv.lib.platforms.unix; 34 }; 35 }
+4
pkgs/development/libraries/dclib/default.nix
··· 9 }; 10 11 buildInputs = [libxml2 openssl bzip2]; 12 }
··· 9 }; 10 11 buildInputs = [libxml2 openssl bzip2]; 12 + 13 + meta = { 14 + platforms = stdenv.lib.platforms.linux; 15 + }; 16 }
+1
pkgs/development/libraries/despotify/default.nix
··· 30 ''; 31 homepage = "http://despotify.se"; 32 license = stdenv.lib.licenses.bsd2; 33 }; 34 35 }
··· 30 ''; 31 homepage = "http://despotify.se"; 32 license = stdenv.lib.licenses.bsd2; 33 + platforms = stdenv.lib.platforms.linux; 34 }; 35 36 }
+1
pkgs/development/libraries/dotconf/default.nix
··· 18 maintainers = with maintainers; [ pSub ]; 19 homepage = http://www.azzit.de/dotconf/; 20 license = licenses.lgpl21Plus; 21 }; 22 }
··· 18 maintainers = with maintainers; [ pSub ]; 19 homepage = http://www.azzit.de/dotconf/; 20 license = licenses.lgpl21Plus; 21 + platforms = with platforms; unix; 22 }; 23 }
+1
pkgs/development/libraries/drumstick/default.nix
··· 37 description = "MIDI libraries for Qt5/C++"; 38 homepage = http://drumstick.sourceforge.net/; 39 license = licenses.gpl2Plus; 40 }; 41 }
··· 37 description = "MIDI libraries for Qt5/C++"; 38 homepage = http://drumstick.sourceforge.net/; 39 license = licenses.gpl2Plus; 40 + platforms = with platforms; linux; 41 }; 42 }
+1
pkgs/development/libraries/eigen/2.0.nix
··· 20 homepage = http://eigen.tuxfamily.org ; 21 maintainers = with stdenv.lib.maintainers; [ sander urkud raskin ]; 22 branch = "2"; 23 }; 24 }
··· 20 homepage = http://eigen.tuxfamily.org ; 21 maintainers = with stdenv.lib.maintainers; [ sander urkud raskin ]; 22 branch = "2"; 23 + platforms = with stdenv.lib.platforms; unix; 24 }; 25 }
+1
pkgs/development/libraries/enchant/default.nix
··· 14 15 meta = { 16 homepage = http://www.abisource.com/enchant; 17 }; 18 }
··· 14 15 meta = { 16 homepage = http://www.abisource.com/enchant; 17 + platforms = stdenv.lib.platforms.unix; 18 }; 19 }
+1
pkgs/development/libraries/esdl/default.nix
··· 27 homepage = http://esdl.sourceforge.net/; 28 description = "Erlang binding to SDL that includes a binding to OpenGL"; 29 license = "BSD"; 30 }; 31 }
··· 27 homepage = http://esdl.sourceforge.net/; 28 description = "Erlang binding to SDL that includes a binding to OpenGL"; 29 license = "BSD"; 30 + platforms = stdenv.lib.platforms.linux; 31 }; 32 }
+1
pkgs/development/libraries/eventlog/default.nix
··· 20 ''; 21 homepage = "http://www.balabit.com/support/community/products/"; 22 license = stdenv.lib.licenses.bsd3; 23 }; 24 }
··· 20 ''; 21 homepage = "http://www.balabit.com/support/community/products/"; 22 license = stdenv.lib.licenses.bsd3; 23 + platforms = stdenv.lib.platforms.unix; 24 }; 25 }
+1
pkgs/development/libraries/exosip/3.x.nix
··· 13 meta = { 14 license = stdenv.lib.licenses.gpl2Plus; 15 description = "Library that hides the complexity of using the SIP protocol"; 16 }; 17 }
··· 13 meta = { 14 license = stdenv.lib.licenses.gpl2Plus; 15 description = "Library that hides the complexity of using the SIP protocol"; 16 + platforms = stdenv.lib.platforms.linux; 17 }; 18 }
+1
pkgs/development/libraries/exosip/default.nix
··· 13 meta = { 14 license = stdenv.lib.licenses.gpl2Plus; 15 description = "Library that hides the complexity of using the SIP protocol"; 16 }; 17 }
··· 13 meta = { 14 license = stdenv.lib.licenses.gpl2Plus; 15 description = "Library that hides the complexity of using the SIP protocol"; 16 + platforms = stdenv.lib.platforms.linux; 17 }; 18 }
+1
pkgs/development/libraries/facile/default.nix
··· 24 homepage = http://www.recherche.enac.fr/log/facile; 25 license = "LGPL"; 26 description = "A Functional Constraint Library"; 27 }; 28 }
··· 24 homepage = http://www.recherche.enac.fr/log/facile; 25 license = "LGPL"; 26 description = "A Functional Constraint Library"; 27 + platforms = stdenv.lib.platforms.unix; 28 }; 29 }
+1
pkgs/development/libraries/farsight2/default.nix
··· 18 meta = { 19 homepage = http://farsight.freedesktop.org/wiki/; 20 description = "Audio/Video Communications Framework"; 21 }; 22 }
··· 18 meta = { 19 homepage = http://farsight.freedesktop.org/wiki/; 20 description = "Audio/Video Communications Framework"; 21 + platforms = stdenv.lib.platforms.linux; 22 }; 23 }
+1
pkgs/development/libraries/farstream/default.nix
··· 22 homepage = http://www.freedesktop.org/wiki/Software/Farstream; 23 description = "Audio/Video Communications Framework formely known as farsight"; 24 maintainers = [ stdenv.lib.maintainers.urkud ]; 25 }; 26 }
··· 22 homepage = http://www.freedesktop.org/wiki/Software/Farstream; 23 description = "Audio/Video Communications Framework formely known as farsight"; 24 maintainers = [ stdenv.lib.maintainers.urkud ]; 25 + platforms = stdenv.lib.platforms.linux; 26 }; 27 }
+1
pkgs/development/libraries/fastjson/default.nix
··· 21 homepage = "https://github.com/rsyslog/libfastjson"; 22 license = licenses.mit; 23 maintainers = with maintainers; [ nequissimus ]; 24 }; 25 }
··· 21 homepage = "https://github.com/rsyslog/libfastjson"; 22 license = licenses.mit; 23 maintainers = with maintainers; [ nequissimus ]; 24 + platforms = with platforms; unix; 25 }; 26 }
+6 -1
pkgs/development/libraries/fcppt/default.nix
··· 18 meta = { 19 description = "Freundlich's C++ toolkit"; 20 longDescription = '' 21 - Freundlich's C++ Toolkit (fcppt) is a collection of libraries focusing on improving general C++ code by providing better types, a strong focus on C++11 (non-conforming compilers are mostly not supported) and functional programming (which is both efficient and syntactically affordable in C++11). 22 ''; 23 homepage = http://fcppt.org; 24 license = stdenv.lib.licenses.boost; 25 maintainers = with stdenv.lib.maintainers; [ pmiddend ]; 26 }; 27 }
··· 18 meta = { 19 description = "Freundlich's C++ toolkit"; 20 longDescription = '' 21 + Freundlich's C++ Toolkit (fcppt) is a collection of libraries focusing on 22 + improving general C++ code by providing better types, a strong focus on 23 + C++11 (non-conforming compilers are mostly not supported) and functional 24 + programming (which is both efficient and syntactically affordable in 25 + C++11). 26 ''; 27 homepage = http://fcppt.org; 28 license = stdenv.lib.licenses.boost; 29 maintainers = with stdenv.lib.maintainers; [ pmiddend ]; 30 + platforms = with stdenv.lib.platforms; linux; 31 }; 32 }
+1
pkgs/development/libraries/ffms/default.nix
··· 18 description = "Libav/ffmpeg based source library for easy frame accurate access"; 19 license = stdenv.lib.licenses.mit; 20 maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; 21 }; 22 }
··· 18 description = "Libav/ffmpeg based source library for easy frame accurate access"; 19 license = stdenv.lib.licenses.mit; 20 maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; 21 + platforms = with stdenv.lib.platforms; unix; 22 }; 23 }
+1
pkgs/development/libraries/freealut/default.nix
··· 14 homepage = "http://openal.org/"; 15 description = "Free implementation of OpenAL's ALUT standard"; 16 license = stdenv.lib.licenses.lgpl2; 17 }; 18 }
··· 14 homepage = "http://openal.org/"; 15 description = "Free implementation of OpenAL's ALUT standard"; 16 license = stdenv.lib.licenses.lgpl2; 17 + platforms = stdenv.lib.platforms.linux; 18 }; 19 }
+1
pkgs/development/libraries/fribidi/default.nix
··· 15 homepage = http://fribidi.org/; 16 description = "GNU implementation of the Unicode Bidirectional Algorithm (bidi)"; 17 license = licenses.gpl2; 18 }; 19 }
··· 15 homepage = http://fribidi.org/; 16 description = "GNU implementation of the Unicode Bidirectional Algorithm (bidi)"; 17 license = licenses.gpl2; 18 + platforms = platforms.unix; 19 }; 20 }
+1
pkgs/development/libraries/funambol/default.nix
··· 18 description = "SyncML client sdk by Funambol project"; 19 homepage = http://www.funambol.com; 20 maintainers = [ stdenv.lib.maintainers.urkud ]; 21 }; 22 }
··· 18 description = "SyncML client sdk by Funambol project"; 19 homepage = http://www.funambol.com; 20 maintainers = [ stdenv.lib.maintainers.urkud ]; 21 + platforms = stdenv.lib.platforms.unix; 22 }; 23 }
+1
pkgs/development/libraries/garmintools/default.nix
··· 10 homepage = https://code.google.com/p/garmintools; 11 license = stdenv.lib.licenses.gpl2; 12 maintainers = [ stdenv.lib.maintainers.ocharles ]; 13 }; 14 }
··· 10 homepage = https://code.google.com/p/garmintools; 11 license = stdenv.lib.licenses.gpl2; 12 maintainers = [ stdenv.lib.maintainers.ocharles ]; 13 + platforms = stdenv.lib.platforms.unix; 14 }; 15 }
+1
pkgs/development/libraries/gegl/3.0.nix
··· 24 description = "Graph-based image processing framework"; 25 homepage = http://www.gegl.org; 26 license = stdenv.lib.licenses.gpl3; 27 }; 28 }
··· 24 description = "Graph-based image processing framework"; 25 homepage = http://www.gegl.org; 26 license = stdenv.lib.licenses.gpl3; 27 + platforms = stdenv.lib.platforms.linux; 28 }; 29 }
+1
pkgs/development/libraries/giblib/default.nix
··· 12 13 meta = { 14 homepage = http://linuxbrit.co.uk/giblib/; 15 }; 16 }
··· 12 13 meta = { 14 homepage = http://linuxbrit.co.uk/giblib/; 15 + platforms = stdenv.lib.platforms.unix; 16 }; 17 }
+1
pkgs/development/libraries/giflib/4.1.nix
··· 12 13 meta = { 14 branch = "4.1"; 15 }; 16 } 17
··· 12 13 meta = { 14 branch = "4.1"; 15 + platforms = stdenv.lib.platforms.unix; 16 }; 17 } 18
+4 -1
pkgs/development/libraries/giflib/libungif.nix
··· 8 }; 9 10 hardeningDisable = [ "format" ]; 11 } 12 -
··· 8 }; 9 10 hardeningDisable = [ "format" ]; 11 + 12 + meta = { 13 + platforms = stdenv.lib.platforms.unix; 14 + }; 15 }
+1
pkgs/development/libraries/gloox/default.nix
··· 29 homepage = "http://camaya.net/gloox"; 30 license = stdenv.lib.licenses.gpl3; 31 maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; 32 }; 33 }
··· 29 homepage = "http://camaya.net/gloox"; 30 license = stdenv.lib.licenses.gpl3; 31 maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; 32 + platforms = with stdenv.lib.platforms; unix; 33 }; 34 }
+1
pkgs/development/libraries/gmime/default.nix
··· 19 homepage = http://spruce.sourceforge.net/gmime/; 20 description = "A C/C++ library for manipulating MIME messages"; 21 maintainers = [ stdenv.lib.maintainers.chaoflow ]; 22 }; 23 }
··· 19 homepage = http://spruce.sourceforge.net/gmime/; 20 description = "A C/C++ library for manipulating MIME messages"; 21 maintainers = [ stdenv.lib.maintainers.chaoflow ]; 22 + platforms = stdenv.lib.platforms.unix; 23 }; 24 }
+1
pkgs/development/libraries/gmm/default.nix
··· 12 description = "Generic C++ template library for sparse, dense and skyline matrices"; 13 homepage = http://home.gna.org/getfem/gmm_intro.html; 14 license = stdenv.lib.licenses.lgpl21Plus; 15 }; 16 }
··· 12 description = "Generic C++ template library for sparse, dense and skyline matrices"; 13 homepage = http://home.gna.org/getfem/gmm_intro.html; 14 license = stdenv.lib.licenses.lgpl21Plus; 15 + platforms = stdenv.lib.platforms.unix; 16 }; 17 }
+1
pkgs/development/libraries/gmock/default.nix
··· 28 homepage = https://code.google.com/p/googlemock/; 29 license = stdenv.lib.licenses.bsd3; 30 maintainers = [ stdenv.lib.maintainers.auntie ]; 31 }; 32 33 passthru = { source = src; };
··· 28 homepage = https://code.google.com/p/googlemock/; 29 license = stdenv.lib.licenses.bsd3; 30 maintainers = [ stdenv.lib.maintainers.auntie ]; 31 + platforms = stdenv.lib.platforms.unix; 32 }; 33 34 passthru = { source = src; };
+1
pkgs/development/libraries/goocanvas/default.nix
··· 16 description = "Canvas widget for GTK+ based on the the Cairo 2D library"; 17 homepage = http://goocanvas.sourceforge.net/; 18 license = ["GPL" "LGPL"]; 19 }; 20 }
··· 16 description = "Canvas widget for GTK+ based on the the Cairo 2D library"; 17 homepage = http://goocanvas.sourceforge.net/; 18 license = ["GPL" "LGPL"]; 19 + platforms = stdenv.lib.platforms.unix; 20 }; 21 }
+1
pkgs/development/libraries/gsl/default.nix
··· 30 fitting. There are over 1000 functions in total with an 31 extensive test suite. 32 ''; 33 }; 34 }
··· 30 fitting. There are over 1000 functions in total with an 31 extensive test suite. 32 ''; 33 + platforms = stdenv.lib.platforms.unix; 34 }; 35 }
+1
pkgs/development/libraries/gsl/gsl-1_16.nix
··· 35 fitting. There are over 1000 functions in total with an 36 extensive test suite. 37 ''; 38 }; 39 }
··· 35 fitting. There are over 1000 functions in total with an 36 extensive test suite. 37 ''; 38 + platforms = stdenv.lib.platforms.unix; 39 }; 40 }
+1
pkgs/development/libraries/gstreamer/legacy/gnonlin/default.nix
··· 17 homepage = "http://gstreamer.freedesktop.org/modules/gnonlin.html"; 18 description = "Gstreamer Non-Linear Multimedia Editing Plugins"; 19 license = stdenv.lib.licenses.gpl2Plus; 20 }; 21 }
··· 17 homepage = "http://gstreamer.freedesktop.org/modules/gnonlin.html"; 18 description = "Gstreamer Non-Linear Multimedia Editing Plugins"; 19 license = stdenv.lib.licenses.gpl2Plus; 20 + platforms = stdenv.lib.platforms.unix; 21 }; 22 }
+1
pkgs/development/libraries/gstreamer/legacy/gst-ffmpeg/default.nix
··· 25 homepage = "http://gstreamer.freedesktop.org/releases/gst-ffmpeg"; 26 description = "GStreamer's plug-in using FFmpeg"; 27 license = stdenv.lib.licenses.gpl2Plus; 28 }; 29 }
··· 25 homepage = "http://gstreamer.freedesktop.org/releases/gst-ffmpeg"; 26 description = "GStreamer's plug-in using FFmpeg"; 27 license = stdenv.lib.licenses.gpl2Plus; 28 + platforms = stdenv.lib.platforms.unix; 29 }; 30 }
+1
pkgs/development/libraries/gstreamer/legacy/gst-python/default.nix
··· 31 description = "Python bindings for GStreamer"; 32 33 license = stdenv.lib.licenses.lgpl2Plus; 34 }; 35 }
··· 31 description = "Python bindings for GStreamer"; 32 33 license = stdenv.lib.licenses.lgpl2Plus; 34 + platforms = stdenv.lib.platforms.unix; 35 }; 36 }
+1
pkgs/development/libraries/gstreamer/legacy/gstreamer/default.nix
··· 54 ''; 55 56 license = stdenv.lib.licenses.lgpl2Plus; 57 }; 58 }
··· 54 ''; 55 56 license = stdenv.lib.licenses.lgpl2Plus; 57 + platforms = stdenv.lib.platforms.unix; 58 }; 59 }
+4
pkgs/development/libraries/gtk-sharp/2.0.nix
··· 46 passthru = { 47 inherit gtk; 48 }; 49 }
··· 46 passthru = { 47 inherit gtk; 48 }; 49 + 50 + meta = { 51 + platforms = stdenv.lib.platforms.linux; 52 + }; 53 }
+4
pkgs/development/libraries/gtk-sharp/3.0.nix
··· 45 passthru = { 46 inherit gtk3; 47 }; 48 }
··· 45 passthru = { 46 inherit gtk3; 47 }; 48 + 49 + meta = { 50 + platforms = stdenv.lib.platforms.linux; 51 + }; 52 }
+1
pkgs/development/libraries/gtkimageview/default.nix
··· 33 license = stdenv.lib.licenses.lgpl2Plus; 34 35 maintainers = [ ]; 36 }; 37 }
··· 33 license = stdenv.lib.licenses.lgpl2Plus; 34 35 maintainers = [ ]; 36 + platforms = stdenv.lib.platforms.linux; 37 }; 38 }
+4
pkgs/development/libraries/gtkmozembed-sharp/default.nix
··· 14 ]; 15 16 inherit monoDLLFixer; 17 }
··· 14 ]; 15 16 inherit monoDLLFixer; 17 + 18 + meta = { 19 + platforms = stdenv.lib.platforms.linux; 20 + }; 21 }
+4
pkgs/development/libraries/gtkspell/default.nix
··· 9 }; 10 11 buildInputs = [aspell pkgconfig gtk enchant intltool]; 12 }
··· 9 }; 10 11 buildInputs = [aspell pkgconfig gtk enchant intltool]; 12 + 13 + meta = { 14 + platforms = stdenv.lib.platforms.unix; 15 + }; 16 }
+1
pkgs/development/libraries/hamlib/default.nix
··· 30 license = with stdenv.lib.licenses; [ gpl2Plus lgpl2Plus ]; 31 homepage = http://hamlib.sourceforge.net; 32 maintainers = with stdenv.lib.maintainers; [ relrod ]; 33 }; 34 }
··· 30 license = with stdenv.lib.licenses; [ gpl2Plus lgpl2Plus ]; 31 homepage = http://hamlib.sourceforge.net; 32 maintainers = with stdenv.lib.maintainers; [ relrod ]; 33 + platforms = with stdenv.lib.platforms; unix; 34 }; 35 }
+1
pkgs/development/libraries/hawknl/default.nix
··· 25 homepage = http://hawksoft.com/hawknl/; 26 description = "Free, open source, game oriented network API"; 27 license = stdenv.lib.licenses.lgpl2Plus; 28 }; 29 }
··· 25 homepage = http://hawksoft.com/hawknl/; 26 description = "Free, open source, game oriented network API"; 27 license = stdenv.lib.licenses.lgpl2Plus; 28 + platforms = stdenv.lib.platforms.linux; 29 }; 30 }
+1
pkgs/development/libraries/http-parser/default.nix
··· 42 homepage = https://github.com/joyent/http-parser; 43 44 license = stdenv.lib.licenses.mit; 45 }; 46 }
··· 42 homepage = https://github.com/joyent/http-parser; 43 44 license = stdenv.lib.licenses.mit; 45 + platforms = stdenv.lib.platforms.unix; 46 }; 47 }
+4
pkgs/development/libraries/id3lib/default.nix
··· 14 url = mirror://sourceforge/id3lib/id3lib-3.8.3.tar.gz; 15 sha256 = "0yfhqwk0w8q2hyv1jib1008jvzmwlpsxvc8qjllhna6p1hycqj97"; 16 }; 17 }
··· 14 url = mirror://sourceforge/id3lib/id3lib-3.8.3.tar.gz; 15 sha256 = "0yfhqwk0w8q2hyv1jib1008jvzmwlpsxvc8qjllhna6p1hycqj97"; 16 }; 17 + 18 + meta = { 19 + platforms = stdenv.lib.platforms.unix; 20 + }; 21 }
+3
pkgs/development/libraries/ilbc/default.nix
··· 19 cp -v ${./CMakeLists.txt} CMakeLists.txt 20 ''; 21 22 }
··· 19 cp -v ${./CMakeLists.txt} CMakeLists.txt 20 ''; 21 22 + meta = { 23 + platforms = stdenv.lib.platforms.unix; 24 + }; 25 }
+4
pkgs/development/libraries/imlib/default.nix
··· 13 --x-libraries=${libX11}/lib"; 14 15 buildInputs = [libjpeg libXext libX11 xextproto libtiff libungif libpng]; 16 }
··· 13 --x-libraries=${libX11}/lib"; 14 15 buildInputs = [libjpeg libXext libX11 xextproto libtiff libungif libpng]; 16 + 17 + meta = { 18 + platforms = stdenv.lib.platforms.unix; 19 + }; 20 }
+1
pkgs/development/libraries/incrtcl/default.nix
··· 25 meta = { 26 homepage = http://incrtcl.sourceforge.net/; 27 description = "Object Oriented Enhancements for Tcl/Tk"; 28 }; 29 }
··· 25 meta = { 26 homepage = http://incrtcl.sourceforge.net/; 27 description = "Object Oriented Enhancements for Tcl/Tk"; 28 + platforms = stdenv.lib.platforms.unix; 29 }; 30 }
+1
pkgs/development/libraries/iniparser/default.nix
··· 39 homepage = http://ndevilla.free.fr/iniparser; 40 description = "Free standalone ini file parsing library"; 41 license = stdenv.lib.licenses.mit; 42 }; 43 }
··· 39 homepage = http://ndevilla.free.fr/iniparser; 40 description = "Free standalone ini file parsing library"; 41 license = stdenv.lib.licenses.mit; 42 + platforms = stdenv.lib.platforms.unix; 43 }; 44 }
+1
pkgs/development/libraries/irrlicht/default.nix
··· 31 homepage = http://irrlicht.sourceforge.net/; 32 license = stdenv.lib.licenses.zlib; 33 description = "Open source high performance realtime 3D engine written in C++"; 34 }; 35 }
··· 31 homepage = http://irrlicht.sourceforge.net/; 32 license = stdenv.lib.licenses.zlib; 33 description = "Open source high performance realtime 3D engine written in C++"; 34 + platforms = stdenv.lib.platforms.linux; 35 }; 36 }
+1
pkgs/development/libraries/irrlicht/irrlicht3843.nix
··· 41 homepage = http://irrlicht.sourceforge.net/; 42 license = stdenv.lib.licenses.zlib; 43 description = "Open source high performance realtime 3D engine written in C++"; 44 }; 45 }
··· 41 homepage = http://irrlicht.sourceforge.net/; 42 license = stdenv.lib.licenses.zlib; 43 description = "Open source high performance realtime 3D engine written in C++"; 44 + platforms = stdenv.lib.platforms.linux; 45 }; 46 }
+2 -1
pkgs/development/libraries/jama/default.nix
··· 24 meta = { 25 homepage = http://math.nist.gov/tnt/; 26 description = "JAMA/C++ Linear Algebra Package: Java-like matrix C++ templates"; 27 }; 28 - }
··· 24 meta = { 25 homepage = http://math.nist.gov/tnt/; 26 description = "JAMA/C++ Linear Algebra Package: Java-like matrix C++ templates"; 27 + platforms = stdenv.lib.platforms.unix; 28 }; 29 + }
+1
pkgs/development/libraries/jasper/default.nix
··· 31 meta = { 32 homepage = https://www.ece.uvic.ca/~frodo/jasper/; 33 description = "JPEG2000 Library"; 34 }; 35 }
··· 31 meta = { 32 homepage = https://www.ece.uvic.ca/~frodo/jasper/; 33 description = "JPEG2000 Library"; 34 + platforms = stdenv.lib.platforms.unix; 35 }; 36 }
+4
pkgs/development/libraries/java/aterm/default.nix
··· 7 md5 = "abf475dae2f5efca865fcdff871feb5e"; 8 }; 9 buildInputs = [stdenv jdk sharedobjects jjtraveler]; 10 }
··· 7 md5 = "abf475dae2f5efca865fcdff871feb5e"; 8 }; 9 buildInputs = [stdenv jdk sharedobjects jjtraveler]; 10 + 11 + meta = { 12 + platforms = stdenv.lib.platforms.unix; 13 + }; 14 }
+1
pkgs/development/libraries/java/classpath/default.nix
··· 55 license = stdenv.lib.licenses.gpl2ClasspathPlus; 56 57 maintainers = [ ]; 58 }; 59 }
··· 55 license = stdenv.lib.licenses.gpl2ClasspathPlus; 56 57 maintainers = [ ]; 58 + platforms = stdenv.lib.platforms.linux; 59 }; 60 }
+1
pkgs/development/libraries/java/commons/bcel/default.nix
··· 20 description = "Gives users a convenient way to analyze, create, and manipulate (binary) Java class files"; 21 maintainers = with stdenv.lib.maintainers; [ copumpkin ]; 22 license = stdenv.lib.licenses.asl20; 23 }; 24 }
··· 20 description = "Gives users a convenient way to analyze, create, and manipulate (binary) Java class files"; 21 maintainers = with stdenv.lib.maintainers; [ copumpkin ]; 22 license = stdenv.lib.licenses.asl20; 23 + platforms = with stdenv.lib.platforms; unix; 24 }; 25 }
+1
pkgs/development/libraries/java/commons/bsf/default.nix
··· 17 description = "Interface to scripting languages, including JSR-223"; 18 homepage = http://commons.apache.org/proper/commons-bsf/; 19 license = stdenv.lib.licenses.asl20; 20 }; 21 } 22
··· 17 description = "Interface to scripting languages, including JSR-223"; 18 homepage = http://commons.apache.org/proper/commons-bsf/; 19 license = stdenv.lib.licenses.asl20; 20 + platforms = stdenv.lib.platforms.unix; 21 }; 22 } 23
+1
pkgs/development/libraries/java/commons/compress/default.nix
··· 20 description = "Allows manipulation of ar, cpio, Unix dump, tar, zip, gzip, XZ, Pack200, bzip2, 7z, arj, lzma, snappy, DEFLATE and Z files"; 21 maintainers = with stdenv.lib.maintainers; [ copumpkin ]; 22 license = stdenv.lib.licenses.asl20; 23 }; 24 }
··· 20 description = "Allows manipulation of ar, cpio, Unix dump, tar, zip, gzip, XZ, Pack200, bzip2, 7z, arj, lzma, snappy, DEFLATE and Z files"; 21 maintainers = with stdenv.lib.maintainers; [ copumpkin ]; 22 license = stdenv.lib.licenses.asl20; 23 + platforms = with stdenv.lib.platforms; unix; 24 }; 25 }
+1
pkgs/development/libraries/java/commons/fileupload/default.nix
··· 19 description = "Makes it easy to add robust, high-performance, file upload capability to your servlets and web applications"; 20 maintainers = with stdenv.lib.maintainers; [ copumpkin ]; 21 license = stdenv.lib.licenses.asl20; 22 }; 23 }
··· 19 description = "Makes it easy to add robust, high-performance, file upload capability to your servlets and web applications"; 20 maintainers = with stdenv.lib.maintainers; [ copumpkin ]; 21 license = stdenv.lib.licenses.asl20; 22 + platforms = with stdenv.lib.platforms; unix; 23 }; 24 }
+1
pkgs/development/libraries/java/commons/io/default.nix
··· 20 description = "A library of utilities to assist with developing IO functionality"; 21 maintainers = with stdenv.lib.maintainers; [ copumpkin ]; 22 license = stdenv.lib.licenses.asl20; 23 }; 24 }
··· 20 description = "A library of utilities to assist with developing IO functionality"; 21 maintainers = with stdenv.lib.maintainers; [ copumpkin ]; 22 license = stdenv.lib.licenses.asl20; 23 + platforms = with stdenv.lib.platforms; unix; 24 }; 25 }
+1
pkgs/development/libraries/java/commons/lang/default.nix
··· 20 description = "Provides additional methods to manipulate standard Java library classes"; 21 maintainers = with stdenv.lib.maintainers; [ copumpkin ]; 22 license = stdenv.lib.licenses.asl20; 23 }; 24 }
··· 20 description = "Provides additional methods to manipulate standard Java library classes"; 21 maintainers = with stdenv.lib.maintainers; [ copumpkin ]; 22 license = stdenv.lib.licenses.asl20; 23 + platforms = with stdenv.lib.platforms; unix; 24 }; 25 }
+1
pkgs/development/libraries/java/commons/logging/default.nix
··· 17 description = "Wrapper around a variety of logging API implementations"; 18 homepage = http://commons.apache.org/proper/commons-logging; 19 license = stdenv.lib.licenses.asl20; 20 }; 21 } 22
··· 17 description = "Wrapper around a variety of logging API implementations"; 18 homepage = http://commons.apache.org/proper/commons-logging; 19 license = stdenv.lib.licenses.asl20; 20 + platforms = stdenv.lib.platforms.unix; 21 }; 22 } 23
+1
pkgs/development/libraries/java/commons/math/default.nix
··· 20 description = "A library of lightweight, self-contained mathematics and statistics components"; 21 maintainers = with stdenv.lib.maintainers; [ copumpkin ]; 22 license = stdenv.lib.licenses.asl20; 23 }; 24 }
··· 20 description = "A library of lightweight, self-contained mathematics and statistics components"; 21 maintainers = with stdenv.lib.maintainers; [ copumpkin ]; 22 license = stdenv.lib.licenses.asl20; 23 + platforms = with stdenv.lib.platforms; unix; 24 }; 25 }
+4
pkgs/development/libraries/java/dbus-java/default.nix
··· 18 -e "s|install: install-bin install-man install-doc|install: install-bin|" Makefile 19 ''; 20 maintainers = [ stdenv.lib.maintainers.sander ]; 21 }
··· 18 -e "s|install: install-bin install-man install-doc|install: install-bin|" Makefile 19 ''; 20 maintainers = [ stdenv.lib.maintainers.sander ]; 21 + 22 + meta = { 23 + platforms = stdenv.lib.platforms.linux; 24 + }; 25 }
+1
pkgs/development/libraries/java/geoipjava/default.nix
··· 22 description = "GeoIP Java API"; 23 license = stdenv.lib.licenses.lgpl21Plus; 24 maintainers = [ stdenv.lib.maintainers.sander ]; 25 }; 26 }
··· 22 description = "GeoIP Java API"; 23 license = stdenv.lib.licenses.lgpl21Plus; 24 maintainers = [ stdenv.lib.maintainers.sander ]; 25 + platforms = stdenv.lib.platforms.unix; 26 }; 27 }
+4
pkgs/development/libraries/java/gwt-dragdrop/default.nix
··· 8 url = http://gwt-dnd.googlecode.com/files/gwt-dnd-2.6.5.jar; 9 sha256 = "07zdlr8afs499asnw0dcjmw1cnjc646v91lflx5dv4qj374c97fw"; 10 }; 11 }
··· 8 url = http://gwt-dnd.googlecode.com/files/gwt-dnd-2.6.5.jar; 9 sha256 = "07zdlr8afs499asnw0dcjmw1cnjc646v91lflx5dv4qj374c97fw"; 10 }; 11 + 12 + meta = { 13 + platforms = stdenv.lib.platforms.unix; 14 + }; 15 }
+4
pkgs/development/libraries/java/gwt-widgets/default.nix
··· 8 url = mirror://sourceforge/gwt-widget/gwt-widgets-0.2.0-bin.tar.gz; 9 sha256 = "09isj4j6842rj13nv8264irkjjhvmgihmi170ciabc98911bakxb"; 10 }; 11 }
··· 8 url = mirror://sourceforge/gwt-widget/gwt-widgets-0.2.0-bin.tar.gz; 9 sha256 = "09isj4j6842rj13nv8264irkjjhvmgihmi170ciabc98911bakxb"; 10 }; 11 + 12 + meta = { 13 + platforms = stdenv.lib.platforms.unix; 14 + }; 15 }
+3
pkgs/development/libraries/java/hsqldb/default.nix
··· 13 buildInputs = [ unzip 14 ]; 15 16 }
··· 13 buildInputs = [ unzip 14 ]; 15 16 + meta = { 17 + platforms = stdenv.lib.platforms.unix; 18 + }; 19 }
+4
pkgs/development/libraries/java/httpunit/default.nix
··· 10 }; 11 12 inherit unzip; 13 }
··· 10 }; 11 12 inherit unzip; 13 + 14 + meta = { 15 + platforms = stdenv.lib.platforms.unix; 16 + }; 17 }
+4
pkgs/development/libraries/java/hydra-ant-logger/default.nix
··· 18 mkdir -p $out/share/java 19 cp -v *.jar $out/share/java 20 ''; 21 }
··· 18 mkdir -p $out/share/java 19 cp -v *.jar $out/share/java 20 ''; 21 + 22 + meta = { 23 + platforms = stdenv.lib.platforms.unix; 24 + }; 25 }
+4
pkgs/development/libraries/java/javasvn/default.nix
··· 10 }; 11 12 inherit unzip; 13 }
··· 10 }; 11 12 inherit unzip; 13 + 14 + meta = { 15 + platforms = stdenv.lib.platforms.unix; 16 + }; 17 }
+5 -1
pkgs/development/libraries/java/jdom/default.nix
··· 8 url = http://www.jdom.org/dist/binary/jdom-1.0.tar.gz; 9 md5 = "ce29ecc05d63fdb419737fd00c04c281"; 10 }; 11 - }
··· 8 url = http://www.jdom.org/dist/binary/jdom-1.0.tar.gz; 9 md5 = "ce29ecc05d63fdb419737fd00c04c281"; 10 }; 11 + 12 + meta = { 13 + platforms = stdenv.lib.platforms.unix; 14 + }; 15 + }
+1
pkgs/development/libraries/java/jflex/default.nix
··· 22 homepage = http://www.jflex.de/; 23 description = "Lexical analyzer generator for Java, written in Java"; 24 license = stdenv.lib.licenses.bsd3; 25 }; 26 }
··· 22 homepage = http://www.jflex.de/; 23 description = "Lexical analyzer generator for Java, written in Java"; 24 license = stdenv.lib.licenses.bsd3; 25 + platforms = stdenv.lib.platforms.unix; 26 }; 27 }
+4
pkgs/development/libraries/java/jjtraveler/default.nix
··· 7 md5 = "35bf801ee61f042513ae88247fe1bf1d"; 8 }; 9 buildInputs = [stdenv jdk]; 10 }
··· 7 md5 = "35bf801ee61f042513ae88247fe1bf1d"; 8 }; 9 buildInputs = [stdenv jdk]; 10 + 11 + meta = { 12 + platforms = stdenv.lib.platforms.unix; 13 + }; 14 }
+1
pkgs/development/libraries/java/jzmq/default.nix
··· 24 meta = { 25 homepage = "http://www.zeromq.org"; 26 description = "Java bindings for ZeroMQ"; 27 }; 28 }
··· 24 meta = { 25 homepage = "http://www.zeromq.org"; 26 description = "Java bindings for ZeroMQ"; 27 + platforms = stdenv.lib.platforms.unix; 28 }; 29 }
+4
pkgs/development/libraries/java/libmatthew-java/default.nix
··· 10 PREFIX=''''${out}''; 11 buildInputs = [ jdk ]; 12 maintainers = [ stdenv.lib.maintainers.sander ]; 13 }
··· 10 PREFIX=''''${out}''; 11 buildInputs = [ jdk ]; 12 maintainers = [ stdenv.lib.maintainers.sander ]; 13 + 14 + meta = { 15 + platforms = stdenv.lib.platforms.linux; 16 + }; 17 }
+5 -1
pkgs/development/libraries/java/lucene/default.nix
··· 8 url = http://cvs.apache.org/dist/jakarta/lucene/v1.4.1/lucene-1.4.1.tar.gz; 9 md5 = "656a6f40f5b8f7d2e19453436848bfe8"; 10 }; 11 - }
··· 8 url = http://cvs.apache.org/dist/jakarta/lucene/v1.4.1/lucene-1.4.1.tar.gz; 9 md5 = "656a6f40f5b8f7d2e19453436848bfe8"; 10 }; 11 + 12 + meta = { 13 + platforms = stdenv.lib.platforms.unix; 14 + }; 15 + }
+4
pkgs/development/libraries/java/mockobjects/default.nix
··· 8 url = mirror://sourceforge/mockobjects/mockobjects-bin-0.09.tar; 9 md5 = "a0e11423bd5fcbb6ea65753643ea8852"; 10 }; 11 }
··· 8 url = mirror://sourceforge/mockobjects/mockobjects-bin-0.09.tar; 9 md5 = "a0e11423bd5fcbb6ea65753643ea8852"; 10 }; 11 + 12 + meta = { 13 + platforms = stdenv.lib.platforms.unix; 14 + }; 15 }
+1
pkgs/development/libraries/java/rhino/default.nix
··· 53 homepage = http://www.mozilla.org/rhino/; 54 55 license = with licenses; [ mpl11 /* or */ gpl2Plus ]; 56 }; 57 }
··· 53 homepage = http://www.mozilla.org/rhino/; 54 55 license = with licenses; [ mpl11 /* or */ gpl2Plus ]; 56 + platforms = platforms.linux; 57 }; 58 }
+4
pkgs/development/libraries/java/saxon/default.nix
··· 10 11 inherit unzip; 12 buildInputs = [unzip]; 13 }
··· 10 11 inherit unzip; 12 buildInputs = [unzip]; 13 + 14 + meta = { 15 + platforms = stdenv.lib.platforms.unix; 16 + }; 17 }
+4
pkgs/development/libraries/java/saxon/default8.nix
··· 19 EOF 20 chmod a+x $out/bin/saxon8 21 "; 22 }
··· 19 EOF 20 chmod a+x $out/bin/saxon8 21 "; 22 + 23 + meta = { 24 + platforms = stdenv.lib.platforms.unix; 25 + }; 26 }
+4
pkgs/development/libraries/java/shared-objects/default.nix
··· 7 md5 = "c1f2c58bd1a07be32da8a6b89354a11f"; 8 }; 9 buildInputs = [stdenv jdk]; 10 }
··· 7 md5 = "c1f2c58bd1a07be32da8a6b89354a11f"; 8 }; 9 buildInputs = [stdenv jdk]; 10 + 11 + meta = { 12 + platforms = stdenv.lib.platforms.unix; 13 + }; 14 }
+4
pkgs/development/libraries/java/smack/default.nix
··· 8 url = http://www.igniterealtime.org/downloadServlet?filename=smack/smack_3_4_1.tar.gz; 9 sha256 = "13jm93b0dsfxr62brq1hagi9fqk7ip3pi80svq10zh5kcpk77jf4"; 10 }; 11 }
··· 8 url = http://www.igniterealtime.org/downloadServlet?filename=smack/smack_3_4_1.tar.gz; 9 sha256 = "13jm93b0dsfxr62brq1hagi9fqk7ip3pi80svq10zh5kcpk77jf4"; 10 }; 11 + 12 + meta = { 13 + platforms = stdenv.lib.platforms.unix; 14 + }; 15 }
+1
pkgs/development/libraries/java/swt/default.nix
··· 69 description = "An widget toolkit for Java to access the user-interface facilities of the operating systems on which it is implemented"; 70 license = licenses.epl10; 71 maintainers = with maintainers; [ pSub ]; 72 }; 73 }
··· 69 description = "An widget toolkit for Java to access the user-interface facilities of the operating systems on which it is implemented"; 70 license = licenses.epl10; 71 maintainers = with maintainers; [ pSub ]; 72 + platforms = with platforms; linux; 73 }; 74 }
+1
pkgs/development/libraries/jbig2dec/default.nix
··· 12 homepage = http://jbig2dec.sourceforge.net/; 13 description = "Decoder implementation of the JBIG2 image compression format"; 14 license = stdenv.lib.licenses.gpl2Plus; 15 }; 16 }
··· 12 homepage = http://jbig2dec.sourceforge.net/; 13 description = "Decoder implementation of the JBIG2 image compression format"; 14 license = stdenv.lib.licenses.gpl2Plus; 15 + platforms = stdenv.lib.platforms.unix; 16 }; 17 }
+1
pkgs/development/libraries/json-glib/default.nix
··· 22 description = "A library providing (de)serialization support for the JavaScript Object Notation (JSON) format"; 23 license = licenses.lgpl2; 24 maintainers = with maintainers; [ lethalman ]; 25 }; 26 }
··· 22 description = "A library providing (de)serialization support for the JavaScript Object Notation (JSON) format"; 23 license = licenses.lgpl2; 24 maintainers = with maintainers; [ lethalman ]; 25 + platforms = with platforms; unix; 26 }; 27 }
+1
pkgs/development/libraries/judy/default.nix
··· 18 homepage = http://judy.sourceforge.net/; 19 license = stdenv.lib.licenses.lgpl21Plus; 20 description = "State-of-the-art C library that implements a sparse dynamic array"; 21 }; 22 }
··· 18 homepage = http://judy.sourceforge.net/; 19 license = stdenv.lib.licenses.lgpl21Plus; 20 description = "State-of-the-art C library that implements a sparse dynamic array"; 21 + platforms = stdenv.lib.platforms.unix; 22 }; 23 }
+1
pkgs/development/libraries/lcms/default.nix
··· 14 description = "Color management engine"; 15 homepage = http://www.littlecms.com/; 16 license = stdenv.lib.licenses.mit; 17 }; 18 }
··· 14 description = "Color management engine"; 15 homepage = http://www.littlecms.com/; 16 license = stdenv.lib.licenses.mit; 17 + platforms = stdenv.lib.platforms.unix; 18 }; 19 }
+1
pkgs/development/libraries/leptonica/default.nix
··· 15 homepage = http://www.leptonica.org/; 16 # Its own license: http://www.leptonica.org/about-the-license.html 17 license = stdenv.lib.licenses.free; 18 }; 19 }
··· 15 homepage = http://www.leptonica.org/; 16 # Its own license: http://www.leptonica.org/about-the-license.html 17 license = stdenv.lib.licenses.free; 18 + platforms = stdenv.lib.platforms.unix; 19 }; 20 }
+4
pkgs/development/libraries/lesstif/default.nix
··· 18 ./c-render_table_crash.patch 19 ./c-xpmpipethrough.patch 20 ]; 21 }
··· 18 ./c-render_table_crash.patch 19 ./c-xpmpipethrough.patch 20 ]; 21 + 22 + meta = { 23 + platforms = stdenv.lib.platforms.unix; 24 + }; 25 }
+1
pkgs/development/libraries/levmar/default.nix
··· 23 description = "ANSI C implementations of Levenberg-Marquardt, usable also from C++"; 24 homepage = http://www.ics.forth.gr/~lourakis/levmar/; 25 license = stdenv.lib.licenses.gpl2Plus; 26 }; 27 }
··· 23 description = "ANSI C implementations of Levenberg-Marquardt, usable also from C++"; 24 homepage = http://www.ics.forth.gr/~lourakis/levmar/; 25 license = stdenv.lib.licenses.gpl2Plus; 26 + platforms = stdenv.lib.platforms.linux; 27 }; 28 }
+1
pkgs/development/libraries/lib3ds/default.nix
··· 14 description = "Library for managing 3D-Studio Release 3 and 4 \".3DS\" files"; 15 homepage = http://lib3ds.sourceforge.net/; 16 license = "LGPL"; 17 }; 18 } 19
··· 14 description = "Library for managing 3D-Studio Release 3 and 4 \".3DS\" files"; 15 homepage = http://lib3ds.sourceforge.net/; 16 license = "LGPL"; 17 + platforms = stdenv.lib.platforms.unix; 18 }; 19 } 20
+1
pkgs/development/libraries/libaacs/default.nix
··· 28 description = "Library to access AACS protected Blu-Ray disks"; 29 license = licenses.lgpl21; 30 maintainers = with maintainers; [ abbradar ]; 31 }; 32 }
··· 28 description = "Library to access AACS protected Blu-Ray disks"; 29 license = licenses.lgpl21; 30 maintainers = with maintainers; [ abbradar ]; 31 + platforms = with platforms; linux; 32 }; 33 }
+1
pkgs/development/libraries/libaal/default.nix
··· 18 description = "Support library for Reiser4"; 19 license = stdenv.lib.licenses.gpl2; 20 maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; 21 }; 22 }
··· 18 description = "Support library for Reiser4"; 19 license = stdenv.lib.licenses.gpl2; 20 maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; 21 + platforms = with stdenv.lib.platforms; linux; 22 }; 23 }
+4
pkgs/development/libraries/libaccounts-glib/default.nix
··· 24 ''; 25 26 NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations"; # since glib-2.46 27 }
··· 24 ''; 25 26 NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations"; # since glib-2.46 27 + 28 + meta = { 29 + platforms = stdenv.lib.platforms.linux; 30 + }; 31 }
+1
pkgs/development/libraries/libao/default.nix
··· 27 homepage = http://xiph.org/ao/; 28 license = stdenv.lib.licenses.gpl2; 29 maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; 30 }; 31 }
··· 27 homepage = http://xiph.org/ao/; 28 license = stdenv.lib.licenses.gpl2; 29 maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; 30 + platforms = with stdenv.lib.platforms; unix; 31 }; 32 }
+1
pkgs/development/libraries/libasr/default.nix
··· 16 description = "Free, simple and portable asynchronous resolver library"; 17 license = licenses.isc; 18 maintainers = [ maintainers.koral ]; 19 }; 20 }
··· 16 description = "Free, simple and portable asynchronous resolver library"; 17 license = licenses.isc; 18 maintainers = [ maintainers.koral ]; 19 + platforms = platforms.unix; 20 }; 21 }
+1
pkgs/development/libraries/libast/default.nix
··· 17 homepage = "http://www.eterm.org"; 18 license = licenses.bsd2; 19 maintainers = [ maintainers.AndersonTorres ]; 20 }; 21 } 22
··· 17 homepage = "http://www.eterm.org"; 18 license = licenses.bsd2; 19 maintainers = [ maintainers.AndersonTorres ]; 20 + platforms = platforms.unix; 21 }; 22 } 23
+1
pkgs/development/libraries/libaudclient/default.nix
··· 16 homepage = http://audacious-media-player.org/; 17 license = licenses.bsd2; 18 maintainers = with maintainers; [ pSub ]; 19 }; 20 }
··· 16 homepage = http://audacious-media-player.org/; 17 license = licenses.bsd2; 18 maintainers = with maintainers; [ pSub ]; 19 + platforms = with platforms; unix; 20 }; 21 }
+1
pkgs/development/libraries/libb64/default.nix
··· 22 inherit version; 23 description = "ANSI C routines for fast base64 encoding/decoding"; 24 license = stdenv.lib.licenses.publicDomain; 25 }; 26 }
··· 22 inherit version; 23 description = "ANSI C routines for fast base64 encoding/decoding"; 24 license = stdenv.lib.licenses.publicDomain; 25 + platforms = stdenv.lib.platforms.unix; 26 }; 27 }
+1
pkgs/development/libraries/libbdplus/default.nix
··· 29 description = "Library to access BD+ protected Blu-Ray disks"; 30 license = licenses.lgpl21; 31 maintainers = with maintainers; [ abbradar ]; 32 }; 33 }
··· 29 description = "Library to access BD+ protected Blu-Ray disks"; 30 license = licenses.lgpl21; 31 maintainers = with maintainers; [ abbradar ]; 32 + platforms = with platforms; unix; 33 }; 34 }
+4
pkgs/development/libraries/libbluedevil/default.nix
··· 13 }; 14 15 buildInputs = [ cmake qt4 ]; 16 }
··· 13 }; 14 15 buildInputs = [ cmake qt4 ]; 16 + 17 + meta = { 18 + platforms = stdenv.lib.platforms.unix; 19 + }; 20 }
+1
pkgs/development/libraries/libbluray/default.nix
··· 59 description = "Library to access Blu-Ray disks for video playback"; 60 license = licenses.lgpl21; 61 maintainers = [ maintainers.abbradar ]; 62 }; 63 }
··· 59 description = "Library to access Blu-Ray disks for video playback"; 60 license = licenses.lgpl21; 61 maintainers = [ maintainers.abbradar ]; 62 + platforms = platforms.unix; 63 }; 64 }
+1
pkgs/development/libraries/libbsd/default.nix
··· 19 description = "Common functions found on BSD systems"; 20 homepage = http://libbsd.freedesktop.org/; 21 license = stdenv.lib.licenses.bsd3; 22 }; 23 }
··· 19 description = "Common functions found on BSD systems"; 20 homepage = http://libbsd.freedesktop.org/; 21 license = stdenv.lib.licenses.bsd3; 22 + platforms = stdenv.lib.platforms.linux; 23 }; 24 }
+1
pkgs/development/libraries/libburn/default.nix
··· 14 description = "A library by which preformatted data get onto optical media: CD, DVD, BD (Blu-Ray)"; 15 license = licenses.gpl2Plus; 16 maintainers = with maintainers; [ abbradar vrthra ]; 17 }; 18 }
··· 14 description = "A library by which preformatted data get onto optical media: CD, DVD, BD (Blu-Ray)"; 15 license = licenses.gpl2Plus; 16 maintainers = with maintainers; [ abbradar vrthra ]; 17 + platforms = with platforms; unix; 18 }; 19 }
+1
pkgs/development/libraries/libcaca/default.nix
··· 26 homepage = http://libcaca.zoy.org/; 27 description = "A graphics library that outputs text instead of pixels"; 28 license = stdenv.lib.licenses.wtfpl; 29 }; 30 }
··· 26 homepage = http://libcaca.zoy.org/; 27 description = "A graphics library that outputs text instead of pixels"; 28 license = stdenv.lib.licenses.wtfpl; 29 + platforms = stdenv.lib.platforms.unix; 30 }; 31 }
+4
pkgs/development/libraries/libcdaudio/default.nix
··· 6 url = mirror://sourceforge/libcdaudio/libcdaudio-0.99.12.tar.gz ; 7 md5 = "63b49cf14d53eed31e7a87cca17a3963" ; 8 }; 9 }
··· 6 url = mirror://sourceforge/libcdaudio/libcdaudio-0.99.12.tar.gz ; 7 md5 = "63b49cf14d53eed31e7a87cca17a3963" ; 8 }; 9 + 10 + meta = { 11 + platforms = stdenv.lib.platforms.linux; 12 + }; 13 }
+1
pkgs/development/libraries/libcddb/default.nix
··· 12 description = "C library to access data on a CDDB server (freedb.org)"; 13 license = stdenv.lib.licenses.lgpl2Plus; 14 homepage = http://libcddb.sourceforge.net/; 15 }; 16 }
··· 12 description = "C library to access data on a CDDB server (freedb.org)"; 13 license = stdenv.lib.licenses.lgpl2Plus; 14 homepage = http://libcddb.sourceforge.net/; 15 + platforms = stdenv.lib.platforms.linux; 16 }; 17 }
+1
pkgs/development/libraries/libcdio/0.82.nix
··· 23 ''; 24 license = stdenv.lib.licenses.gpl2Plus; 25 homepage = http://www.gnu.org/software/libcdio/; 26 }; 27 }
··· 23 ''; 24 license = stdenv.lib.licenses.gpl2Plus; 25 homepage = http://www.gnu.org/software/libcdio/; 26 + platforms = stdenv.lib.platforms.linux; 27 }; 28 }
+1
pkgs/development/libraries/libcdio/default.nix
··· 23 ''; 24 license = stdenv.lib.licenses.gpl2Plus; 25 homepage = http://www.gnu.org/software/libcdio/; 26 }; 27 }
··· 23 ''; 24 license = stdenv.lib.licenses.gpl2Plus; 25 homepage = http://www.gnu.org/software/libcdio/; 26 + platforms = stdenv.lib.platforms.linux; 27 }; 28 }
+1
pkgs/development/libraries/libcello/default.nix
··· 12 homepage = http://libcello.org/; 13 description = "Higher level programming in C"; 14 license = stdenv.lib.licenses.bsd3; 15 }; 16 }
··· 12 homepage = http://libcello.org/; 13 description = "Higher level programming in C"; 14 license = stdenv.lib.licenses.bsd3; 15 + platforms = stdenv.lib.platforms.unix; 16 }; 17 }
+1
pkgs/development/libraries/libchardet/default.nix
··· 17 homepage = ftp://ftp.oops.org/pub/oops/libchardet/index.html; 18 license = licenses.mpl11; 19 maintainers = [ maintainers.abbradar ]; 20 }; 21 }
··· 17 homepage = ftp://ftp.oops.org/pub/oops/libchardet/index.html; 18 license = licenses.mpl11; 19 maintainers = [ maintainers.abbradar ]; 20 + platforms = platforms.unix; 21 }; 22 }
+1
pkgs/development/libraries/libcrafter/default.nix
··· 24 description = "High level C++ network packet sniffing and crafting library"; 25 license = stdenv.lib.licenses.bsd3; 26 maintainers = [ stdenv.lib.maintainers.lethalman ]; 27 }; 28 }
··· 24 description = "High level C++ network packet sniffing and crafting library"; 25 license = stdenv.lib.licenses.bsd3; 26 maintainers = [ stdenv.lib.maintainers.lethalman ]; 27 + platforms = stdenv.lib.platforms.unix; 28 }; 29 }
+2 -1
pkgs/development/libraries/libcrossguid/default.nix
··· 29 license = licenses.mit; 30 maintainers = with maintainers; [ edwtjo ]; 31 homepage = https://github.com/graeme-hill/crossguid; 32 }; 33 34 - }
··· 29 license = licenses.mit; 30 maintainers = with maintainers; [ edwtjo ]; 31 homepage = https://github.com/graeme-hill/crossguid; 32 + platforms = with platforms; linux; 33 }; 34 35 + }
+10 -9
pkgs/development/libraries/libctemplate/2.2.nix
··· 1 { stdenv, fetchurl }: 2 3 stdenv.mkDerivation rec { 4 meta = { 5 description = "A simple but powerful template language for C++"; 6 longDescription = '' ··· 9 embed application logic in this template language. ''; 10 homepage = http://code.google.com/p/google-ctemplate/; 11 license = "bsd"; 12 - }; 13 - 14 - pname = "ctemplate"; 15 - version = "2.2"; 16 - name = "${pname}-${version}"; 17 - 18 - src = fetchurl { 19 - url = "http://ctemplate.googlecode.com/files/${name}.tar.gz"; 20 - sha256 = "0vv8gvyndppm9m5s1i5k0jvwcz41l1vfgg04r7nssdpzyz0cpwq4"; 21 }; 22 }
··· 1 { stdenv, fetchurl }: 2 3 stdenv.mkDerivation rec { 4 + pname = "ctemplate"; 5 + version = "2.2"; 6 + name = "${pname}-${version}"; 7 + 8 + src = fetchurl { 9 + url = "http://ctemplate.googlecode.com/files/${name}.tar.gz"; 10 + sha256 = "0vv8gvyndppm9m5s1i5k0jvwcz41l1vfgg04r7nssdpzyz0cpwq4"; 11 + }; 12 + 13 meta = { 14 description = "A simple but powerful template language for C++"; 15 longDescription = '' ··· 18 embed application logic in this template language. ''; 19 homepage = http://code.google.com/p/google-ctemplate/; 20 license = "bsd"; 21 + platforms = stdenv.lib.platforms.unix; 22 }; 23 }
+1 -1
pkgs/development/libraries/libdaemon/default.nix
··· 17 18 license = stdenv.lib.licenses.lgpl2Plus; 19 20 - hydraPlatforms = stdenv.lib.platforms.linux; 21 maintainers = [ ]; 22 }; 23 }
··· 17 18 license = stdenv.lib.licenses.lgpl2Plus; 19 20 + platforms = stdenv.lib.platforms.unix; 21 maintainers = [ ]; 22 }; 23 }
+1
pkgs/development/libraries/libdivsufsort/default.nix
··· 12 homepage = http://code.google.com/p/libdivsufsort/; 13 license = stdenv.lib.licenses.mit; 14 description = "Library to construct the suffix array and the BW transformed string"; 15 }; 16 }
··· 12 homepage = http://code.google.com/p/libdivsufsort/; 13 license = stdenv.lib.licenses.mit; 14 description = "Library to construct the suffix array and the BW transformed string"; 15 + platforms = stdenv.lib.platforms.unix; 16 }; 17 }
+1
pkgs/development/libraries/libdvdnav/4.2.1.nix
··· 25 description = "A library that implements DVD navigation features such as DVD menus"; 26 license = stdenv.lib.licenses.gpl2; 27 maintainers = [ stdenv.lib.maintainers.wmertens ]; 28 }; 29 30 passthru = { inherit libdvdread; };
··· 25 description = "A library that implements DVD navigation features such as DVD menus"; 26 license = stdenv.lib.licenses.gpl2; 27 maintainers = [ stdenv.lib.maintainers.wmertens ]; 28 + platforms = stdenv.lib.platforms.linux; 29 }; 30 31 passthru = { inherit libdvdread; };
+1
pkgs/development/libraries/libdvdnav/default.nix
··· 17 description = "A library that implements DVD navigation features such as DVD menus"; 18 license = stdenv.lib.licenses.gpl2; 19 maintainers = [ stdenv.lib.maintainers.wmertens ]; 20 }; 21 22 passthru = { inherit libdvdread; };
··· 17 description = "A library that implements DVD navigation features such as DVD menus"; 18 license = stdenv.lib.licenses.gpl2; 19 maintainers = [ stdenv.lib.maintainers.wmertens ]; 20 + platforms = stdenv.lib.platforms.linux; 21 }; 22 23 passthru = { inherit libdvdread; };
+1
pkgs/development/libraries/libdvdread/4.9.9.nix
··· 21 description = "A library for reading DVDs"; 22 license = stdenv.lib.licenses.gpl2; 23 maintainers = [ stdenv.lib.maintainers.wmertens ]; 24 }; 25 }
··· 21 description = "A library for reading DVDs"; 22 license = stdenv.lib.licenses.gpl2; 23 maintainers = [ stdenv.lib.maintainers.wmertens ]; 24 + platforms = stdenv.lib.platforms.linux; 25 }; 26 }
+1
pkgs/development/libraries/libdvdread/default.nix
··· 22 description = "A library for reading DVDs"; 23 license = stdenv.lib.licenses.gpl2; 24 maintainers = [ stdenv.lib.maintainers.wmertens ]; 25 }; 26 }
··· 22 description = "A library for reading DVDs"; 23 license = stdenv.lib.licenses.gpl2; 24 maintainers = [ stdenv.lib.maintainers.wmertens ]; 25 + platforms = stdenv.lib.platforms.linux; 26 }; 27 }
+1
pkgs/development/libraries/libdwarf/default.nix
··· 23 24 meta = { 25 homepage = http://reality.sgiweb.org/davea/dwarf.html; 26 }; 27 }
··· 23 24 meta = { 25 homepage = http://reality.sgiweb.org/davea/dwarf.html; 26 + platforms = stdenv.lib.platforms.linux; 27 }; 28 }
+1
pkgs/development/libraries/libeatmydata/default.nix
··· 19 homepage = http://www.flamingspork.com/projects/libeatmydata/; 20 license = stdenv.lib.licenses.gpl3Plus; 21 description = "Small LD_PRELOAD library to disable fsync and friends"; 22 }; 23 }
··· 19 homepage = http://www.flamingspork.com/projects/libeatmydata/; 20 license = stdenv.lib.licenses.gpl3Plus; 21 description = "Small LD_PRELOAD library to disable fsync and friends"; 22 + platforms = stdenv.lib.platforms.unix; 23 }; 24 }
+1
pkgs/development/libraries/libeb/default.nix
··· 20 ''; 21 license = licenses.bsd3; 22 maintainers = with maintainers; [ gebner ]; 23 }; 24 }
··· 20 ''; 21 license = licenses.bsd3; 22 maintainers = with maintainers; [ gebner ]; 23 + platforms = with platforms; unix; 24 }; 25 }
+1
pkgs/development/libraries/libebur128/default.nix
··· 18 homepage = https://github.com/jiixyj/libebur128; 19 license = licenses.mit; 20 maintainers = [ maintainers.andrewrk ]; 21 }; 22 }
··· 18 homepage = https://github.com/jiixyj/libebur128; 19 license = licenses.mit; 20 maintainers = [ maintainers.andrewrk ]; 21 + platforms = platforms.unix; 22 }; 23 }
+1
pkgs/development/libraries/libechonest/default.nix
··· 16 description = "A C++/Qt wrapper around the Echo Nest API"; 17 homepage = "http://projects.kde.org/projects/playground/libs/libechonest"; 18 license = stdenv.lib.licenses.gpl2Plus; 19 }; 20 }
··· 16 description = "A C++/Qt wrapper around the Echo Nest API"; 17 homepage = "http://projects.kde.org/projects/playground/libs/libechonest"; 18 license = stdenv.lib.licenses.gpl2Plus; 19 + platforms = stdenv.lib.platforms.unix; 20 }; 21 }
+1
pkgs/development/libraries/libee/default.nix
··· 12 meta = { 13 homepage = "http://www.libee.org/"; 14 description = "An Event Expression Library inspired by CEE"; 15 }; 16 }
··· 12 meta = { 13 homepage = "http://www.libee.org/"; 14 description = "An Event Expression Library inspired by CEE"; 15 + platforms = stdenv.lib.platforms.unix; 16 }; 17 }
+1
pkgs/development/libraries/libexif/default.nix
··· 14 homepage = http://libexif.sourceforge.net/; 15 description = "A library to read and manipulate EXIF data in digital photographs"; 16 license = stdenv.lib.licenses.lgpl21; 17 }; 18 19 }
··· 14 homepage = http://libexif.sourceforge.net/; 15 description = "A library to read and manipulate EXIF data in digital photographs"; 16 license = stdenv.lib.licenses.lgpl21; 17 + platforms = stdenv.lib.platforms.unix; 18 }; 19 20 }
+1
pkgs/development/libraries/libextractor/default.nix
··· 66 license = stdenv.lib.licenses.gpl2Plus; 67 68 maintainers = [ ]; 69 }; 70 }
··· 66 license = stdenv.lib.licenses.gpl2Plus; 67 68 maintainers = [ ]; 69 + platforms = stdenv.lib.platforms.linux; 70 }; 71 }
+1
pkgs/development/libraries/libf2c/default.nix
··· 30 description = "F2c converts Fortran 77 source code to C"; 31 homepage = http://www.netlib.org/f2c/; 32 license = stdenv.lib.licenses.mit; 33 }; 34 }
··· 30 description = "F2c converts Fortran 77 source code to C"; 31 homepage = http://www.netlib.org/f2c/; 32 license = stdenv.lib.licenses.mit; 33 + platforms = stdenv.lib.platforms.unix; 34 }; 35 }
+1
pkgs/development/libraries/libftdi/default.nix
··· 16 description = "A library to talk to FTDI chips using libusb"; 17 homepage = http://www.intra2net.com/en/developer/libftdi/; 18 license = stdenv.lib.licenses.lgpl21; 19 }; 20 }
··· 16 description = "A library to talk to FTDI chips using libusb"; 17 homepage = http://www.intra2net.com/en/developer/libftdi/; 18 license = stdenv.lib.licenses.lgpl21; 19 + platforms = stdenv.lib.platforms.unix; 20 }; 21 }
+4
pkgs/development/libraries/libgdiplus/default.nix
··· 27 libjpeg libpng libXrender libexif 28 ] 29 ++ stdenv.lib.optional stdenv.isDarwin Carbon; 30 }
··· 27 libjpeg libpng libXrender libexif 28 ] 29 ++ stdenv.lib.optional stdenv.isDarwin Carbon; 30 + 31 + meta = { 32 + platforms = stdenv.lib.platforms.unix; 33 + }; 34 }
+1
pkgs/development/libraries/libgksu/default.nix
··· 76 homepage = "http://www.nongnu.org/gksu/"; 77 license = stdenv.lib.licenses.lgpl2; 78 maintainers = [ stdenv.lib.maintainers.romildo ]; 79 }; 80 }
··· 76 homepage = "http://www.nongnu.org/gksu/"; 77 license = stdenv.lib.licenses.lgpl2; 78 maintainers = [ stdenv.lib.maintainers.romildo ]; 79 + platforms = stdenv.lib.platforms.linux; 80 }; 81 }
+1 -1
pkgs/development/libraries/libgnurl/default.nix
··· 30 description = "A fork of libcurl used by GNUnet"; 31 homepage = https://gnunet.org/gnurl; 32 maintainers = with maintainers; [ falsifian vrthra ]; 33 - hydraPlatforms = platforms.linux; 34 }; 35 }
··· 30 description = "A fork of libcurl used by GNUnet"; 31 homepage = https://gnunet.org/gnurl; 32 maintainers = with maintainers; [ falsifian vrthra ]; 33 + platforms = platforms.linux; 34 }; 35 }
+4
pkgs/development/libraries/libgtop/default.nix
··· 9 10 propagatedBuildInputs = [ glib ]; 11 nativeBuildInputs = [ pkgconfig perl intltool gobjectIntrospection ]; 12 }
··· 9 10 propagatedBuildInputs = [ glib ]; 11 nativeBuildInputs = [ pkgconfig perl intltool gobjectIntrospection ]; 12 + 13 + meta = { 14 + platforms = stdenv.lib.platforms.linux; 15 + }; 16 }
+4
pkgs/development/libraries/libicns/default.nix
··· 9 }; 10 11 buildInputs = [ libpng jasper ]; 12 }
··· 9 }; 10 11 buildInputs = [ libpng jasper ]; 12 + 13 + meta = { 14 + platforms = stdenv.lib.platforms.unix; 15 + }; 16 }
+1
pkgs/development/libraries/libid3tag/default.nix
··· 27 homepage = http://mad.sourceforge.net/; 28 license = licenses.gpl2; 29 maintainers = [ maintainers.fuuzetsu ]; 30 }; 31 }
··· 27 homepage = http://mad.sourceforge.net/; 28 license = licenses.gpl2; 29 maintainers = [ maintainers.fuuzetsu ]; 30 + platforms = platforms.unix; 31 }; 32 }
+1
pkgs/development/libraries/libinfinity/default.nix
··· 39 description = "An implementation of the Infinote protocol written in GObject-based C"; 40 license = stdenv.lib.licenses.lgpl2Plus; 41 maintainers = [ stdenv.lib.maintainers.phreedom ]; 42 }; 43 44 }
··· 39 description = "An implementation of the Infinote protocol written in GObject-based C"; 40 license = stdenv.lib.licenses.lgpl2Plus; 41 maintainers = [ stdenv.lib.maintainers.phreedom ]; 42 + platforms = stdenv.lib.platforms.linux; 43 }; 44 45 }
+1
pkgs/development/libraries/libiodbc/default.nix
··· 18 meta = { 19 description = "iODBC driver manager"; 20 homepage = http://www.iodbc.org; 21 }; 22 }
··· 18 meta = { 19 description = "iODBC driver manager"; 20 homepage = http://www.iodbc.org; 21 + platforms = stdenv.lib.platforms.linux; 22 }; 23 }
+1
pkgs/development/libraries/libiptcdata/default.nix
··· 12 description = "Library for reading and writing the IPTC metadata in images and other files"; 13 homepage = http://libiptcdata.sourceforge.net/; 14 license = stdenv.lib.licenses.gpl2Plus; 15 }; 16 }
··· 12 description = "Library for reading and writing the IPTC metadata in images and other files"; 13 homepage = http://libiptcdata.sourceforge.net/; 14 license = stdenv.lib.licenses.gpl2Plus; 15 + platforms = stdenv.lib.platforms.unix; 16 }; 17 }
+1
pkgs/development/libraries/libisoburn/default.nix
··· 17 description = "Enables creation and expansion of ISO-9660 filesystems on CD/DVD/BD "; 18 license = licenses.gpl2Plus; 19 maintainers = with maintainers; [ vrthra ]; 20 }; 21 }
··· 17 description = "Enables creation and expansion of ISO-9660 filesystems on CD/DVD/BD "; 18 license = licenses.gpl2Plus; 19 maintainers = with maintainers; [ vrthra ]; 20 + platforms = with platforms; linux; 21 }; 22 }
+1
pkgs/development/libraries/libisofs/default.nix
··· 17 description = "A library to create an ISO-9660 filesystem with extensions like RockRidge or Joliet"; 18 license = licenses.gpl2Plus; 19 maintainers = with maintainers; [ abbradar vrthra ]; 20 }; 21 }
··· 17 description = "A library to create an ISO-9660 filesystem with extensions like RockRidge or Joliet"; 18 license = licenses.gpl2Plus; 19 maintainers = with maintainers; [ abbradar vrthra ]; 20 + platforms = with platforms; linux; 21 }; 22 }
+1
pkgs/development/libraries/libixp-hg/default.nix
··· 22 maintainers = with stdenv.lib.maintainers; [ kovirobi ]; 23 license = stdenv.lib.licenses.mit; 24 inherit version; 25 }; 26 }
··· 22 maintainers = with stdenv.lib.maintainers; [ kovirobi ]; 23 license = stdenv.lib.licenses.mit; 24 inherit version; 25 + platforms = with stdenv.lib.platforms; unix; 26 }; 27 }
+4
pkgs/development/libraries/libjpeg/62.nix
··· 26 md5 = "092a12aeb0c386dd7dae059109d950ba"; 27 }) 28 ]; 29 }
··· 26 md5 = "092a12aeb0c386dd7dae059109d950ba"; 27 }) 28 ]; 29 + 30 + meta = { 31 + platforms = stdenv.lib.platforms.unix; 32 + }; 33 }
+1
pkgs/development/libraries/libjpeg/default.nix
··· 18 homepage = http://www.ijg.org/; 19 description = "A library that implements the JPEG image file format"; 20 license = stdenv.lib.licenses.free; 21 }; 22 }
··· 18 homepage = http://www.ijg.org/; 19 description = "A library that implements the JPEG image file format"; 20 license = stdenv.lib.licenses.free; 21 + platforms = stdenv.lib.platforms.unix; 22 }; 23 }
+1
pkgs/development/libraries/libjreen/default.nix
··· 16 description = "C++ Jabber library using Qt framework"; 17 homepage = "https://qutim.org/jreen/"; 18 license = stdenv.lib.licenses.gpl2Plus; 19 }; 20 }
··· 16 description = "C++ Jabber library using Qt framework"; 17 homepage = "https://qutim.org/jreen/"; 18 license = stdenv.lib.licenses.gpl2Plus; 19 + platforms = stdenv.lib.platforms.unix; 20 }; 21 }
+1
pkgs/development/libraries/libjson/default.nix
··· 15 homepage = "http://libjson.sourceforge.net/"; 16 description = "A JSON reader and writer"; 17 longDescription = "A JSON reader and writer which is super-effiecient and usually runs circles around other JSON libraries. It's highly customizable to optimize for your particular project, and very lightweight. For Windows, OSX, or Linux. Works in any language."; 18 }; 19 }
··· 15 homepage = "http://libjson.sourceforge.net/"; 16 description = "A JSON reader and writer"; 17 longDescription = "A JSON reader and writer which is super-effiecient and usually runs circles around other JSON libraries. It's highly customizable to optimize for your particular project, and very lightweight. For Windows, OSX, or Linux. Works in any language."; 18 + platforms = stdenv.lib.platforms.unix; 19 }; 20 }
+1
pkgs/development/libraries/libkate/default.nix
··· 19 them.''; 20 homepage = http://code.google.com/p/libkate; 21 maintainers = [ stdenv.lib.maintainers.urkud ]; 22 }; 23 }
··· 19 them.''; 20 homepage = http://code.google.com/p/libkate; 21 maintainers = [ stdenv.lib.maintainers.urkud ]; 22 + platforms = stdenv.lib.platforms.unix; 23 }; 24 }
+1
pkgs/development/libraries/libmatchbox/default.nix
··· 16 description = "Library of the matchbox X window manager"; 17 homepage = http://matchbox-project.org/; 18 license = stdenv.lib.licenses.gpl2Plus; 19 }; 20 }
··· 16 description = "Library of the matchbox X window manager"; 17 homepage = http://matchbox-project.org/; 18 license = stdenv.lib.licenses.gpl2Plus; 19 + platforms = stdenv.lib.platforms.unix; 20 }; 21 }
+1
pkgs/development/libraries/libmcs/default.nix
··· 13 meta = { 14 description = "A library and set of userland tools which abstract the storage of configuration settings away from userland applications"; 15 homepage = http://www.atheme.org/projects/mcs.shtml; 16 }; 17 }
··· 13 meta = { 14 description = "A library and set of userland tools which abstract the storage of configuration settings away from userland applications"; 15 homepage = http://www.atheme.org/projects/mcs.shtml; 16 + platforms = stdenv.lib.platforms.unix; 17 }; 18 }
+14 -13
pkgs/development/libraries/libmhash/default.nix
··· 1 { stdenv, fetchurl }: 2 3 stdenv.mkDerivation rec { 4 meta = { 5 description = "Hash algorithms library"; 6 longDescription = '' ··· 11 ''; 12 homepage = http://mhash.sourceforge.net; 13 license = "LGPL"; 14 }; 15 - 16 - pname = "mhash"; 17 - version = "0.9.9.9"; 18 - name = "${pname}-${version}"; 19 - 20 - dontDisableStatic = true; 21 - 22 - src = fetchurl { 23 - url = "mirror://sourceforge/${pname}/${name}.tar.bz2"; 24 - sha256 = "1w7yiljan8gf1ibiypi6hm3r363imm3sxl1j8hapjdq3m591qljn"; 25 - }; 26 - 27 - patches = [ ./autotools-define-conflict-debian-fix.patch ]; 28 }
··· 1 { stdenv, fetchurl }: 2 3 stdenv.mkDerivation rec { 4 + pname = "mhash"; 5 + version = "0.9.9.9"; 6 + name = "${pname}-${version}"; 7 + 8 + src = fetchurl { 9 + url = "mirror://sourceforge/${pname}/${name}.tar.bz2"; 10 + sha256 = "1w7yiljan8gf1ibiypi6hm3r363imm3sxl1j8hapjdq3m591qljn"; 11 + }; 12 + 13 + dontDisableStatic = true; 14 + 15 + patches = [ ./autotools-define-conflict-debian-fix.patch ]; 16 + 17 meta = { 18 description = "Hash algorithms library"; 19 longDescription = '' ··· 24 ''; 25 homepage = http://mhash.sourceforge.net; 26 license = "LGPL"; 27 + platforms = stdenv.lib.platforms.unix; 28 }; 29 }
+1
pkgs/development/libraries/libmicrohttpd/default.nix
··· 32 homepage = http://www.gnu.org/software/libmicrohttpd/; 33 34 maintainers = [ maintainers.eelco maintainers.vrthra ]; 35 }; 36 }
··· 32 homepage = http://www.gnu.org/software/libmicrohttpd/; 33 34 maintainers = [ maintainers.eelco maintainers.vrthra ]; 35 + platforms = platforms.linux; 36 }; 37 }
+4
pkgs/development/libraries/libmilter/default.nix
··· 31 patches = [ ./install.patch ./sharedlib.patch]; 32 33 buildInputs = [m4]; 34 }
··· 31 patches = [ ./install.patch ./sharedlib.patch]; 32 33 buildInputs = [m4]; 34 + 35 + meta = { 36 + platforms = stdenv.lib.platforms.linux; 37 + }; 38 }
+1
pkgs/development/libraries/libmkv/default.nix
··· 25 homepage = https://github.com/saintdev/libmkv; 26 license = stdenv.lib.licenses.gpl2; 27 maintainers = [ stdenv.lib.maintainers.wmertens ]; 28 }; 29 }
··· 25 homepage = https://github.com/saintdev/libmkv; 26 license = stdenv.lib.licenses.gpl2; 27 maintainers = [ stdenv.lib.maintainers.wmertens ]; 28 + platforms = stdenv.lib.platforms.unix; 29 }; 30 }
+1 -1
pkgs/development/libraries/libmng/default.nix
··· 18 homepage = http://www.libmng.com; 19 license = licenses.zlib; 20 maintainers = with maintainers; [ marcweber urkud ]; 21 - hydraPlatforms = platforms.linux; 22 }; 23 }
··· 18 homepage = http://www.libmng.com; 19 license = licenses.zlib; 20 maintainers = with maintainers; [ marcweber urkud ]; 21 + platforms = platforms.unix; 22 }; 23 }
+1
pkgs/development/libraries/libmowgli/default.nix
··· 11 meta = { 12 description = "A development framework for C providing high performance and highly flexible algorithms"; 13 homepage = http://www.atheme.org/projects/mowgli.shtml; 14 }; 15 }
··· 11 meta = { 12 description = "A development framework for C providing high performance and highly flexible algorithms"; 13 homepage = http://www.atheme.org/projects/mowgli.shtml; 14 + platforms = stdenv.lib.platforms.unix; 15 }; 16 }
+4
pkgs/development/libraries/libmpcdec/default.nix
··· 6 url = http://files.musepack.net/source/libmpcdec-1.2.6.tar.bz2; 7 md5 = "7f7a060e83b4278acf4b77d7a7b9d2c0"; 8 }; 9 }
··· 6 url = http://files.musepack.net/source/libmpcdec-1.2.6.tar.bz2; 7 md5 = "7f7a060e83b4278acf4b77d7a7b9d2c0"; 8 }; 9 + 10 + meta = { 11 + platforms = stdenv.lib.platforms.unix; 12 + }; 13 }
+1
pkgs/development/libraries/libmpeg2/default.nix
··· 17 description = "A free library for decoding mpeg-2 and mpeg-1 video streams"; 18 license = stdenv.lib.licenses.gpl2; 19 maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; 20 }; 21 }
··· 17 description = "A free library for decoding mpeg-2 and mpeg-1 video streams"; 18 license = stdenv.lib.licenses.gpl2; 19 maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; 20 + platforms = with stdenv.lib.platforms; unix; 21 }; 22 }
+4
pkgs/development/libraries/libmsn/default.nix
··· 8 }; 9 patches = [ ./fix-ftbfs-gcc4.7.diff ]; 10 buildInputs = [ cmake openssl ]; 11 }
··· 8 }; 9 patches = [ ./fix-ftbfs-gcc4.7.diff ]; 10 buildInputs = [ cmake openssl ]; 11 + 12 + meta = { 13 + platforms = stdenv.lib.platforms.unix; 14 + }; 15 }
+1
pkgs/development/libraries/libmspack/default.nix
··· 11 description = "A de/compression library for various Microsoft formats"; 12 homepage = http://www.cabextract.org.uk/libmspack; 13 license = stdenv.lib.licenses.lgpl2; 14 }; 15 }
··· 11 description = "A de/compression library for various Microsoft formats"; 12 homepage = http://www.cabextract.org.uk/libmspack; 13 license = stdenv.lib.licenses.lgpl2; 14 + platforms = stdenv.lib.platforms.unix; 15 }; 16 }
+1
pkgs/development/libraries/libmx/default.nix
··· 56 file.''; 57 license = licenses.lgpl21; 58 maintainers = with maintainers; [ cstrahan ]; 59 }; 60 }
··· 56 file.''; 57 license = licenses.lgpl21; 58 maintainers = with maintainers; [ cstrahan ]; 59 + platforms = with platforms; linux; 60 }; 61 }
+1
pkgs/development/libraries/libnfsidmap/default.nix
··· 17 homepage = http://www.citi.umich.edu/projects/nfsv4/linux/; 18 description = "Library for holding mulitiple methods of mapping names to id's and visa versa, mainly for NFSv4"; 19 license = "BSD"; 20 }; 21 }
··· 17 homepage = http://www.citi.umich.edu/projects/nfsv4/linux/; 18 description = "Library for holding mulitiple methods of mapping names to id's and visa versa, mainly for NFSv4"; 19 license = "BSD"; 20 + platforms = stdenv.lib.platforms.unix; 21 }; 22 }
+1
pkgs/development/libraries/libnice/default.nix
··· 22 23 It provides a GLib-based library, libnice and a Glib-free library, 24 libstun as well as GStreamer elements.''; 25 }; 26 }
··· 22 23 It provides a GLib-based library, libnice and a Glib-free library, 24 libstun as well as GStreamer elements.''; 25 + platforms = stdenv.lib.platforms.linux; 26 }; 27 }
+1
pkgs/development/libraries/libnih/default.nix
··· 16 description = "A small library for C application development"; 17 homepage = https://launchpad.net/libnih; 18 license = stdenv.lib.licenses.gpl2; 19 }; 20 }
··· 16 description = "A small library for C application development"; 17 homepage = https://launchpad.net/libnih; 18 license = stdenv.lib.licenses.gpl2; 19 + platforms = stdenv.lib.platforms.linux; 20 }; 21 }
+1
pkgs/development/libraries/libnotify/default.nix
··· 23 meta = { 24 homepage = http://galago-project.org/; # very obsolete but found no better 25 description = "A library that sends desktop notifications to a notification daemon"; 26 }; 27 }
··· 23 meta = { 24 homepage = http://galago-project.org/; # very obsolete but found no better 25 description = "A library that sends desktop notifications to a notification daemon"; 26 + platforms = stdenv.lib.platforms.unix; 27 }; 28 }
+1
pkgs/development/libraries/libnova/default.nix
··· 11 meta = { 12 description = "Celestial Mechanics, Astrometry and Astrodynamics Library"; 13 homepage = http://libnova.sf.net; 14 }; 15 }
··· 11 meta = { 12 description = "Celestial Mechanics, Astrometry and Astrodynamics Library"; 13 homepage = http://libnova.sf.net; 14 + platforms = stdenv.lib.platforms.unix; 15 }; 16 }
+1
pkgs/development/libraries/libofa/default.nix
··· 25 longDescription = '' 26 LibOFA (Library Open Fingerprint Architecture) is an open-source audio 27 fingerprint created and provided by MusicIP''; 28 }; 29 }
··· 25 longDescription = '' 26 LibOFA (Library Open Fingerprint Architecture) is an open-source audio 27 fingerprint created and provided by MusicIP''; 28 + platforms = stdenv.lib.platforms.linux; 29 }; 30 }
+1
pkgs/development/libraries/liboggz/default.nix
··· 28 support the Ogg Vorbis audio format but now used for many free codecs 29 including Dirac, FLAC, Speex and Theora.''; 30 maintainers = [ stdenv.lib.maintainers.urkud ]; 31 }; 32 }
··· 28 support the Ogg Vorbis audio format but now used for many free codecs 29 including Dirac, FLAC, Speex and Theora.''; 30 maintainers = [ stdenv.lib.maintainers.urkud ]; 31 + platforms = stdenv.lib.platforms.unix; 32 }; 33 }
+1
pkgs/development/libraries/liboop/default.nix
··· 12 description = "Event loop library"; 13 homepage = http://liboop.ofb.net/; 14 license = "LGPL"; 15 }; 16 }
··· 12 description = "Event loop library"; 13 homepage = http://liboop.ofb.net/; 14 license = "LGPL"; 15 + platforms = stdenv.lib.platforms.linux; 16 }; 17 }
+1
pkgs/development/libraries/libosmpbf/default.nix
··· 18 homepage = https://github.com/scrosby/OSM-binary; 19 description = "C library to read and write OpenStreetMap PBF files"; 20 license = stdenv.lib.licenses.lgpl3; 21 }; 22 }
··· 18 homepage = https://github.com/scrosby/OSM-binary; 19 description = "C library to read and write OpenStreetMap PBF files"; 20 license = stdenv.lib.licenses.lgpl3; 21 + platforms = stdenv.lib.platforms.unix; 22 }; 23 }
+1
pkgs/development/libraries/libpaper/default.nix
··· 13 description = "Library for handling paper characteristics"; 14 homepage = "http://packages.debian.org/unstable/source/libpaper"; 15 license = stdenv.lib.licenses.gpl2; 16 }; 17 }
··· 13 description = "Library for handling paper characteristics"; 14 homepage = "http://packages.debian.org/unstable/source/libpaper"; 15 license = stdenv.lib.licenses.gpl2; 16 + platforms = stdenv.lib.platforms.unix; 17 }; 18 }
+1
pkgs/development/libraries/libpar2/default.nix
··· 18 homepage = http://parchive.sourceforge.net/; 19 license = stdenv.lib.licenses.gpl2Plus; 20 description = "A library for using Parchives (parity archive volume sets)"; 21 }; 22 }
··· 18 homepage = http://parchive.sourceforge.net/; 19 license = stdenv.lib.licenses.gpl2Plus; 20 description = "A library for using Parchives (parity archive volume sets)"; 21 + platforms = stdenv.lib.platforms.unix; 22 }; 23 }
+1
pkgs/development/libraries/libpcap/default.nix
··· 32 meta = { 33 homepage = http://www.tcpdump.org; 34 description = "Packet Capture Library"; 35 }; 36 }
··· 32 meta = { 33 homepage = http://www.tcpdump.org; 34 description = "Packet Capture Library"; 35 + platforms = stdenv.lib.platforms.unix; 36 }; 37 }
+1
pkgs/development/libraries/libpgf/default.nix
··· 23 homepage = http://www.libpgf.org/; 24 description = "Progressive Graphics Format"; 25 license = stdenv.lib.licenses.lgpl21Plus; 26 }; 27 }
··· 23 homepage = http://www.libpgf.org/; 24 description = "Progressive Graphics Format"; 25 license = stdenv.lib.licenses.lgpl21Plus; 26 + platforms = stdenv.lib.platforms.unix; 27 }; 28 }
+1
pkgs/development/libraries/libpng/12.nix
··· 31 license = licenses.libpng; 32 maintainers = [ maintainers.fuuzetsu ]; 33 branch = "1.2"; 34 }; 35 }
··· 31 license = licenses.libpng; 32 maintainers = [ maintainers.fuuzetsu ]; 33 branch = "1.2"; 34 + platforms = platforms.unix; 35 }; 36 }
+4
pkgs/development/libraries/libproxy/default.nix
··· 13 propagatedBuildInputs = [ zlib ] 14 # now some optional deps, but many more are possible 15 ++ [ glib ]; 16 }
··· 13 propagatedBuildInputs = [ zlib ] 14 # now some optional deps, but many more are possible 15 ++ [ glib ]; 16 + 17 + meta = { 18 + platforms = stdenv.lib.platforms.linux; 19 + }; 20 }
+1
pkgs/development/libraries/libpseudo/default.nix
··· 22 homepage = http://libpseudo.sourceforge.net/; 23 description = "Simple, thread-safe messaging between threads"; 24 license = licenses.gpl2Plus; 25 }; 26 }
··· 22 homepage = http://libpseudo.sourceforge.net/; 23 description = "Simple, thread-safe messaging between threads"; 24 license = licenses.gpl2Plus; 25 + platforms = platforms.linux; 26 }; 27 }
+1
pkgs/development/libraries/libpst/default.nix
··· 19 description = "A library to read PST (MS Outlook Personal Folders) files"; 20 license = licenses.gpl2; 21 maintainers = [maintainers.tohl]; 22 }; 23 }
··· 19 description = "A library to read PST (MS Outlook Personal Folders) files"; 20 license = licenses.gpl2; 21 maintainers = [maintainers.tohl]; 22 + platforms = platforms.unix; 23 }; 24 }
+4
pkgs/development/libraries/libpwquality/default.nix
··· 10 }; 11 12 buildInputs = [ cracklib python ]; 13 }
··· 10 }; 11 12 buildInputs = [ cracklib python ]; 13 + 14 + meta = { 15 + platforms = stdenv.lib.platforms.linux; 16 + }; 17 }
+1
pkgs/development/libraries/librdf/redland.nix
··· 35 36 meta = { 37 homepage = http://librdf.org/; 38 }; 39 }
··· 35 36 meta = { 37 homepage = http://librdf.org/; 38 + platforms = stdenv.lib.platforms.linux; 39 }; 40 }
+1
pkgs/development/libraries/libresample/default.nix
··· 23 license = stdenv.lib.licenses.lgpl2Plus; 24 homepage = https://ccrma.stanford.edu/~jos/resample/Free_Resampling_Software.html; 25 maintainers = [ stdenv.lib.maintainers.sander ]; 26 }; 27 }
··· 23 license = stdenv.lib.licenses.lgpl2Plus; 24 homepage = https://ccrma.stanford.edu/~jos/resample/Free_Resampling_Software.html; 25 maintainers = [ stdenv.lib.maintainers.sander ]; 26 + platforms = stdenv.lib.platforms.unix; 27 }; 28 }
-22
pkgs/development/libraries/libressl/2.2.nix
··· 1 - { stdenv, fetchurl }: 2 - 3 - stdenv.mkDerivation rec { 4 - name = "libressl-${version}"; 5 - version = "2.2.9"; 6 - 7 - src = fetchurl { 8 - url = "mirror://openbsd/LibreSSL/${name}.tar.gz"; 9 - sha256 = "0i2cbkj07kcs2is8k8wirvywg4az3wk4s3q1slwp4qw3x9vz63vi"; 10 - }; 11 - 12 - enableParallelBuilding = true; 13 - 14 - outputs = [ "dev" "out" "man" "bin" ]; 15 - 16 - meta = with stdenv.lib; { 17 - description = "Free TLS/SSL implementation"; 18 - homepage = "http://www.libressl.org"; 19 - platforms = platforms.all; 20 - maintainers = with maintainers; [ thoughtpolice wkennington fpletz globin ]; 21 - }; 22 - }
···
+2 -2
pkgs/development/libraries/libressl/2.3.nix
··· 2 3 stdenv.mkDerivation rec { 4 name = "libressl-${version}"; 5 - version = "2.3.6"; 6 7 src = fetchurl { 8 url = "mirror://openbsd/LibreSSL/${name}.tar.gz"; 9 - sha256 = "1yipsp1ici207nbminbf1knh252kzvqg036v0xpx0fw1wrwlg2im"; 10 }; 11 12 enableParallelBuilding = true;
··· 2 3 stdenv.mkDerivation rec { 4 name = "libressl-${version}"; 5 + version = "2.3.7"; 6 7 src = fetchurl { 8 url = "mirror://openbsd/LibreSSL/${name}.tar.gz"; 9 + sha256 = "0q08yysyalz0fvzajm3x4wg4k6gn4hhd04qsfv27r1p4kj2mv7zm"; 10 }; 11 12 enableParallelBuilding = true;
+2 -2
pkgs/development/libraries/libressl/2.4.nix
··· 2 3 stdenv.mkDerivation rec { 4 name = "libressl-${version}"; 5 - version = "2.4.1"; 6 7 src = fetchurl { 8 url = "mirror://openbsd/LibreSSL/${name}.tar.gz"; 9 - sha256 = "0xq4x1s91aqzrf8j9d4kf4j093cz2ayg0xrybsl4gkb966qj468j"; 10 }; 11 12 enableParallelBuilding = true;
··· 2 3 stdenv.mkDerivation rec { 4 name = "libressl-${version}"; 5 + version = "2.4.2"; 6 7 src = fetchurl { 8 url = "mirror://openbsd/LibreSSL/${name}.tar.gz"; 9 + sha256 = "1qyrcyzrrn6r9cqvm66ib72qyr65q4hrdyiq1vb24a6nwmwdg1sz"; 10 }; 11 12 enableParallelBuilding = true;
+4
pkgs/development/libraries/librsvg/default.nix
··· 52 cat ${gdk_pixbuf.out}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache $GDK_PIXBUF/loaders.cache.tmp > $GDK_PIXBUF/loaders.cache 53 rm $GDK_PIXBUF/loaders.cache.tmp 54 ''; 55 }
··· 52 cat ${gdk_pixbuf.out}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache $GDK_PIXBUF/loaders.cache.tmp > $GDK_PIXBUF/loaders.cache 53 rm $GDK_PIXBUF/loaders.cache.tmp 54 ''; 55 + 56 + meta = { 57 + platforms = stdenv.lib.platforms.unix; 58 + }; 59 }
+1
pkgs/development/libraries/librsync/0.9.nix
··· 20 homepage = http://librsync.sourceforge.net/; 21 license = stdenv.lib.licenses.lgpl2Plus; 22 description = "Implementation of the rsync remote-delta algorithm"; 23 }; 24 }
··· 20 homepage = http://librsync.sourceforge.net/; 21 license = stdenv.lib.licenses.lgpl2Plus; 22 description = "Implementation of the rsync remote-delta algorithm"; 23 + platforms = stdenv.lib.platforms.unix; 24 }; 25 }
+1
pkgs/development/libraries/libshout/default.nix
··· 27 license = stdenv.lib.licenses.gpl2; 28 maintainers = with stdenv.lib.maintainers; [ jcumming ]; 29 30 }; 31 }
··· 27 license = stdenv.lib.licenses.gpl2; 28 maintainers = with stdenv.lib.maintainers; [ jcumming ]; 29 30 + platforms = with stdenv.lib.platforms; unix; 31 }; 32 }
+1
pkgs/development/libraries/libsieve/default.nix
··· 12 description = "An interpreter for RFC 3028 Sieve and various extensions"; 13 homepage = "http://sodabrew.com/libsieve/"; 14 license = licenses.lgpl21; 15 }; 16 }
··· 12 description = "An interpreter for RFC 3028 Sieve and various extensions"; 13 homepage = "http://sodabrew.com/libsieve/"; 14 license = licenses.lgpl21; 15 + platforms = platforms.unix; 16 }; 17 }
+1
pkgs/development/libraries/libsigcxx/1.2.nix
··· 14 homepage = http://libsigc.sourceforge.net/; 15 description = "A typesafe callback system for standard C++"; 16 branch = "1.2"; 17 }; 18 }
··· 14 homepage = http://libsigc.sourceforge.net/; 15 description = "A typesafe callback system for standard C++"; 16 branch = "1.2"; 17 + platforms = stdenv.lib.platforms.unix; 18 }; 19 }
+1
pkgs/development/libraries/libsigsegv/2.5.nix
··· 12 homepage = http://libsigsegv.sf.net; 13 description = "A library for handling page faults in user mode"; 14 branch = "2.5"; 15 }; 16 17 doCheck = true;
··· 12 homepage = http://libsigsegv.sf.net; 13 description = "A library for handling page faults in user mode"; 14 branch = "2.5"; 15 + platforms = stdenv.lib.platforms.linux; 16 }; 17 18 doCheck = true;
+1
pkgs/development/libraries/libsigsegv/default.nix
··· 28 license = stdenv.lib.licenses.gpl2Plus; 29 30 maintainers = [ ]; 31 }; 32 }
··· 28 license = stdenv.lib.licenses.gpl2Plus; 29 30 maintainers = [ ]; 31 + platforms = stdenv.lib.platforms.unix; 32 }; 33 }
+1
pkgs/development/libraries/libsixel/default.nix
··· 15 homepage = http://saitoha.github.com/libsixel; 16 maintainers = with maintainers; [ vrthra ]; 17 license = licenses.mit; 18 }; 19 }
··· 15 homepage = http://saitoha.github.com/libsixel; 16 maintainers = with maintainers; [ vrthra ]; 17 license = licenses.mit; 18 + platforms = with platforms; unix; 19 }; 20 }
+1
pkgs/development/libraries/libspatialindex/default.nix
··· 16 description = "Extensible spatial index library in C++"; 17 homepage = http://libspatialindex.github.io/; 18 license = stdenv.lib.licenses.mit; 19 }; 20 }
··· 16 description = "Extensible spatial index library in C++"; 17 homepage = http://libspatialindex.github.io/; 18 license = stdenv.lib.licenses.mit; 19 + platforms = stdenv.lib.platforms.linux; 20 }; 21 }
+1
pkgs/development/libraries/libspectre/default.nix
··· 28 ''; 29 30 license = stdenv.lib.licenses.gpl2Plus; 31 }; 32 }
··· 28 ''; 29 30 license = stdenv.lib.licenses.gpl2Plus; 31 + platforms = stdenv.lib.platforms.linux; 32 }; 33 }
+2 -1
pkgs/development/libraries/libsrs2/default.nix
··· 13 description = "The next generation SRS library from the original designer of SRS"; 14 license = with lib.licenses; [ gpl2 bsd3 ]; 15 homepage = http://www.libsrs2.org/; 16 }; 17 - }
··· 13 description = "The next generation SRS library from the original designer of SRS"; 14 license = with lib.licenses; [ gpl2 bsd3 ]; 15 homepage = http://www.libsrs2.org/; 16 + platforms = stdenv.lib.platforms.linux; 17 }; 18 + }
+1
pkgs/development/libraries/libstroke/default.nix
··· 29 easy to work with, and notably used by FVWM. 30 ''; 31 32 }; 33 }
··· 29 easy to work with, and notably used by FVWM. 30 ''; 31 32 + platforms = stdenv.lib.platforms.linux; 33 }; 34 }
+1
pkgs/development/libraries/libtap/default.nix
··· 24 homepage = "http://www.shlomifish.org/open-source/projects/libtap/"; 25 license = licenses.bsd3; 26 maintainers = [ maintainers.AndersonTorres ]; 27 }; 28 }
··· 24 homepage = "http://www.shlomifish.org/open-source/projects/libtap/"; 25 license = licenses.bsd3; 26 maintainers = [ maintainers.AndersonTorres ]; 27 + platforms = stdenv.lib.platforms.unix; 28 }; 29 }
+1
pkgs/development/libraries/libtermkey/default.nix
··· 18 meta = with lib; { 19 description = "Terminal keypress reading library"; 20 license = licenses.mit; 21 }; 22 }
··· 18 meta = with lib; { 19 description = "Terminal keypress reading library"; 20 license = licenses.mit; 21 + platforms = platforms.unix; 22 }; 23 }
+1
pkgs/development/libraries/libtiger/default.nix
··· 14 homepage = http://code.google.com/p/libtiger/; 15 authors = [ "Vincent Penquerc'h" ]; 16 description = "A rendering library for Kate streams using Pango and Cairo"; 17 }; 18 }
··· 14 homepage = http://code.google.com/p/libtiger/; 15 authors = [ "Vincent Penquerc'h" ]; 16 description = "A rendering library for Kate streams using Pango and Cairo"; 17 + platforms = stdenv.lib.platforms.unix; 18 }; 19 }
+1
pkgs/development/libraries/libtomcrypt/default.nix
··· 22 meta = { 23 homepage = "http://libtom.org/?page=features&newsitems=5&whatfile=crypt"; 24 description = "A fairly comprehensive, modular and portable cryptographic toolkit"; 25 }; 26 }
··· 22 meta = { 23 homepage = "http://libtom.org/?page=features&newsitems=5&whatfile=crypt"; 24 description = "A fairly comprehensive, modular and portable cryptographic toolkit"; 25 + platforms = stdenv.lib.platforms.linux; 26 }; 27 }
+1
pkgs/development/libraries/libtommath/default.nix
··· 22 meta = { 23 homepage = http://math.libtomcrypt.com/; 24 description = "A library for integer-based number-theoretic applications"; 25 }; 26 }
··· 22 meta = { 23 homepage = http://math.libtomcrypt.com/; 24 description = "A library for integer-based number-theoretic applications"; 25 + platforms = stdenv.lib.platforms.unix; 26 }; 27 }
+1
pkgs/development/libraries/libtorrent-rasterbar/generic.nix
··· 37 description = "A C++ BitTorrent implementation focusing on efficiency and scalability"; 38 license = licenses.bsd3; 39 maintainers = [ maintainers.phreedom ]; 40 }; 41 }
··· 37 description = "A C++ BitTorrent implementation focusing on efficiency and scalability"; 38 license = licenses.bsd3; 39 maintainers = [ maintainers.phreedom ]; 40 + platforms = platforms.linux; 41 }; 42 }
+1
pkgs/development/libraries/libtsm/default.nix
··· 25 homepage = "http://www.freedesktop.org/wiki/Software/kmscon/libtsm/"; 26 license = licenses.mit; 27 maintainers = with maintainers; [ cstrahan ]; 28 }; 29 }
··· 25 homepage = "http://www.freedesktop.org/wiki/Software/kmscon/libtsm/"; 26 license = licenses.mit; 27 maintainers = with maintainers; [ cstrahan ]; 28 + platforms = with platforms; unix; 29 }; 30 }
+4
pkgs/development/libraries/libtunepimp/default.nix
··· 13 url = "ftp://ftp.musicbrainz.org/pub/musicbrainz/${name}.tar.gz"; 14 sha256 = "0s141zmsxv8xlivcgcmy6xhk9cyjjxmr1fy45xiqfqrqpsh485rl"; 15 }; 16 }
··· 13 url = "ftp://ftp.musicbrainz.org/pub/musicbrainz/${name}.tar.gz"; 14 sha256 = "0s141zmsxv8xlivcgcmy6xhk9cyjjxmr1fy45xiqfqrqpsh485rl"; 15 }; 16 + 17 + meta = { 18 + platforms = stdenv.lib.platforms.linux; 19 + }; 20 }
+1
pkgs/development/libraries/libtxc_dxtn/default.nix
··· 15 meta = { 16 homepage = http://dri.freedesktop.org/wiki/S3TC; 17 repositories.git = git://people.freedesktop.org/~mareko/libtxc_dxtn; 18 }; 19 }
··· 15 meta = { 16 homepage = http://dri.freedesktop.org/wiki/S3TC; 17 repositories.git = git://people.freedesktop.org/~mareko/libtxc_dxtn; 18 + platforms = stdenv.lib.platforms.unix; 19 }; 20 }
+1
pkgs/development/libraries/libuchardet/default.nix
··· 19 homepage = https://www.byvoid.com/zht/project/uchardet; 20 license = licenses.mpl11; 21 maintainers = with maintainers; [ cstrahan ]; 22 }; 23 }
··· 19 homepage = https://www.byvoid.com/zht/project/uchardet; 20 license = licenses.mpl11; 21 maintainers = with maintainers; [ cstrahan ]; 22 + platforms = with platforms; unix; 23 }; 24 }
+1
pkgs/development/libraries/libunique/3.x.nix
··· 24 description = "A library for writing single instance applications"; 25 license = licenses.lgpl21; 26 maintainers = [ maintainers.AndersonTorres ]; 27 }; 28 }
··· 24 description = "A library for writing single instance applications"; 25 license = licenses.lgpl21; 26 maintainers = [ maintainers.AndersonTorres ]; 27 + platforms = stdenv.lib.platforms.linux; 28 }; 29 }
+1
pkgs/development/libraries/libunique/default.nix
··· 26 homepage = http://live.gnome.org/LibUnique; 27 description = "A library for writing single instance applications"; 28 license = stdenv.lib.licenses.lgpl21; 29 }; 30 }
··· 26 homepage = http://live.gnome.org/LibUnique; 27 description = "A library for writing single instance applications"; 28 license = stdenv.lib.licenses.lgpl21; 29 + platforms = stdenv.lib.platforms.linux; 30 }; 31 }
+4
pkgs/development/libraries/libusb/default.nix
··· 13 url = mirror://sourceforge/libusb/libusb-compat-0.1.5.tar.bz2; 14 sha256 = "0nn5icrfm9lkhzw1xjvaks9bq3w6mjg86ggv3fn7kgi4nfvg8kj0"; 15 }; 16 }
··· 13 url = mirror://sourceforge/libusb/libusb-compat-0.1.5.tar.bz2; 14 sha256 = "0nn5icrfm9lkhzw1xjvaks9bq3w6mjg86ggv3fn7kgi4nfvg8kj0"; 15 }; 16 + 17 + meta = { 18 + platforms = stdenv.lib.platforms.unix; 19 + }; 20 }
+1
pkgs/development/libraries/libusbmuxd/default.nix
··· 19 20 meta = { 21 homepage = "http://www.libimobiledevice.org"; 22 }; 23 }
··· 19 20 meta = { 21 homepage = "http://www.libimobiledevice.org"; 22 + platforms = stdenv.lib.platforms.unix; 23 }; 24 }
+1
pkgs/development/libraries/libviper/default.nix
··· 22 homepage = http://libviper.sourceforge.net/; 23 description = "Simple window creation and management facilities for the console"; 24 license = licenses.gpl2Plus; 25 }; 26 }
··· 22 homepage = http://libviper.sourceforge.net/; 23 description = "Simple window creation and management facilities for the console"; 24 license = licenses.gpl2Plus; 25 + platforms = platforms.linux; 26 }; 27 }
+1
pkgs/development/libraries/libwmf/default.nix
··· 18 19 meta = { 20 description = "WMF library from wvWare"; 21 }; 22 }
··· 18 19 meta = { 20 description = "WMF library from wvWare"; 21 + platforms = stdenv.lib.platforms.unix; 22 }; 23 }
+4
pkgs/development/libraries/libwnck/3.x.nix
··· 15 16 buildInputs = [ pkgconfig intltool ]; 17 propagatedBuildInputs = [ libX11 gtk3 ]; 18 }
··· 15 16 buildInputs = [ pkgconfig intltool ]; 17 propagatedBuildInputs = [ libX11 gtk3 ]; 18 + 19 + meta = { 20 + platforms = stdenv.lib.platforms.linux; 21 + }; 22 }
+4
pkgs/development/libraries/libwpd/0.8.nix
··· 13 buildInputs = [ glib libgsf libxml2 ]; 14 15 nativeBuildInputs = [ pkgconfig bzip2 ]; 16 }
··· 13 buildInputs = [ glib libgsf libxml2 ]; 14 15 nativeBuildInputs = [ pkgconfig bzip2 ]; 16 + 17 + meta = { 18 + platforms = stdenv.lib.platforms.unix; 19 + }; 20 }
+1
pkgs/development/libraries/libwpd/default.nix
··· 16 description = "A library for importing and exporting WordPerfect documents"; 17 homepage = http://libwpd.sourceforge.net/; 18 license = licenses.lgpl21; 19 }; 20 }
··· 16 description = "A library for importing and exporting WordPerfect documents"; 17 homepage = http://libwpd.sourceforge.net/; 18 license = licenses.lgpl21; 19 + platforms = platforms.unix; 20 }; 21 }
+1
pkgs/development/libraries/libxdg-basedir/default.nix
··· 11 homepage = http://n.ethz.ch/student/nevillm/download/libxdg-basedir/; 12 description = "Implementation of the XDG Base Directory specification"; 13 license = "BSD"; 14 }; 15 }
··· 11 homepage = http://n.ethz.ch/student/nevillm/download/libxdg-basedir/; 12 description = "Implementation of the XDG Base Directory specification"; 13 license = "BSD"; 14 + platforms = stdenv.lib.platforms.unix; 15 }; 16 }
+1
pkgs/development/libraries/libxkbcommon/default.nix
··· 26 homepage = http://xkbcommon.org; 27 license = licenses.mit; 28 maintainers = with maintainers; [ garbas ]; 29 }; 30 }
··· 26 homepage = http://xkbcommon.org; 27 license = licenses.mit; 28 maintainers = with maintainers; [ garbas ]; 29 + platforms = with platforms; unix; 30 }; 31 }
+1
pkgs/development/libraries/libxklavier/default.nix
··· 31 description = "Library providing high-level API for X Keyboard Extension known as XKB"; 32 homepage = http://freedesktop.org/wiki/Software/LibXklavier; 33 license = licenses.lgpl2Plus; 34 }; 35 } 36
··· 31 description = "Library providing high-level API for X Keyboard Extension known as XKB"; 32 homepage = http://freedesktop.org/wiki/Software/LibXklavier; 33 license = licenses.lgpl2Plus; 34 + platforms = platforms.linux; 35 }; 36 } 37
+1
pkgs/development/libraries/lightning/default.nix
··· 28 ''; 29 maintainers = [ maintainers.AndersonTorres ]; 30 license = licenses.lgpl3Plus; 31 }; 32 }
··· 28 ''; 29 maintainers = [ maintainers.AndersonTorres ]; 30 license = licenses.lgpl3Plus; 31 + platforms = stdenv.lib.platforms.linux; 32 }; 33 }
+1
pkgs/development/libraries/log4cplus/default.nix
··· 15 homepage = "http://log4cplus.sourceforge.net/"; 16 description = "A port the log4j library from Java to C++"; 17 license = stdenv.lib.licenses.asl20; 18 }; 19 }
··· 15 homepage = "http://log4cplus.sourceforge.net/"; 16 description = "A port the log4j library from Java to C++"; 17 license = stdenv.lib.licenses.asl20; 18 + platforms = stdenv.lib.platforms.unix; 19 }; 20 }
+1
pkgs/development/libraries/log4cpp/default.nix
··· 12 homepage = http://log4cpp.sourceforge.net/; 13 description = "A logging framework for C++ patterned after Apache log4j"; 14 license = stdenv.lib.licenses.lgpl21Plus; 15 }; 16 }
··· 12 homepage = http://log4cpp.sourceforge.net/; 13 description = "A logging framework for C++ patterned after Apache log4j"; 14 license = stdenv.lib.licenses.lgpl21Plus; 15 + platforms = stdenv.lib.platforms.unix; 16 }; 17 }
+1
pkgs/development/libraries/log4cxx/default.nix
··· 31 homepage = http://logging.apache.org/log4cxx/index.html; 32 description = "A logging framework for C++ patterned after Apache log4j"; 33 license = stdenv.lib.licenses.asl20; 34 }; 35 }
··· 31 homepage = http://logging.apache.org/log4cxx/index.html; 32 description = "A logging framework for C++ patterned after Apache log4j"; 33 license = stdenv.lib.licenses.asl20; 34 + platforms = stdenv.lib.platforms.unix; 35 }; 36 }
+1
pkgs/development/libraries/loudmouth/default.nix
··· 26 27 meta = { 28 description = "A lightweight C library for the Jabber protocol"; 29 }; 30 }
··· 26 27 meta = { 28 description = "A lightweight C library for the Jabber protocol"; 29 + platforms = stdenv.lib.platforms.linux; 30 }; 31 }
+1
pkgs/development/libraries/luabind/default.nix
··· 26 homepage = https://github.com/luabind/luabind; 27 description = "A library that helps you create bindings between C++ and Lua"; 28 license = stdenv.lib.licenses.mit; 29 }; 30 }
··· 26 homepage = https://github.com/luabind/luabind; 27 description = "A library that helps you create bindings between C++ and Lua"; 28 license = stdenv.lib.licenses.mit; 29 + platforms = stdenv.lib.platforms.linux; 30 }; 31 }
+1
pkgs/development/libraries/lucene++/default.nix
··· 42 description = "C++ port of the popular Java Lucene search engine"; 43 homepage = "https://github.com/luceneplusplus/LucenePlusPlus"; 44 license = with stdenv.lib.licenses; [ asl20 lgpl3Plus ]; 45 }; 46 }
··· 42 description = "C++ port of the popular Java Lucene search engine"; 43 homepage = "https://github.com/luceneplusplus/LucenePlusPlus"; 44 license = with stdenv.lib.licenses; [ asl20 lgpl3Plus ]; 45 + platforms = stdenv.lib.platforms.linux; 46 }; 47 }
+1
pkgs/development/libraries/mesa-glu/default.nix
··· 18 description = "OpenGL utility library"; 19 homepage = http://cgit.freedesktop.org/mesa/glu/; 20 license = stdenv.lib.licenses.sgi-b-20; 21 }; 22 }
··· 18 description = "OpenGL utility library"; 19 homepage = http://cgit.freedesktop.org/mesa/glu/; 20 license = stdenv.lib.licenses.sgi-b-20; 21 + platforms = stdenv.lib.platforms.unix; 22 }; 23 }
+1
pkgs/development/libraries/miniball/default.nix
··· 21 homepage = https://www.inf.ethz.ch/personal/gaertner/miniball.html; 22 license = stdenv.lib.licenses.gpl3; 23 maintainers = [ stdenv.lib.maintainers.erikryb ]; 24 }; 25 }
··· 21 homepage = https://www.inf.ethz.ch/personal/gaertner/miniball.html; 22 license = stdenv.lib.licenses.gpl3; 23 maintainers = [ stdenv.lib.maintainers.erikryb ]; 24 + platforms = stdenv.lib.platforms.unix; 25 }; 26 }
+4
pkgs/development/libraries/minizip/default.nix
··· 8 buildInputs = [ zlib ]; 9 10 sourceRoot = "zlib-${zlib.version}/contrib/minizip"; 11 }
··· 8 buildInputs = [ zlib ]; 9 10 sourceRoot = "zlib-${zlib.version}/contrib/minizip"; 11 + 12 + meta = { 13 + platforms = stdenv.lib.platforms.unix; 14 + }; 15 }
+4
pkgs/development/libraries/msilbc/default.nix
··· 14 15 buildInputs = [pkgconfig]; 16 configureFlags = "ILBC_LIBS=ilbc ILBC_CFLAGS=-I${ilbc}/include"; 17 }
··· 14 15 buildInputs = [pkgconfig]; 16 configureFlags = "ILBC_LIBS=ilbc ILBC_CFLAGS=-I${ilbc}/include"; 17 + 18 + meta = { 19 + platforms = stdenv.lib.platforms.linux; 20 + }; 21 }
+1
pkgs/development/libraries/muparser/default.nix
··· 16 homepage = http://muparser.sourceforge.net; 17 description = "An extensible high performance math expression parser library written in C++"; 18 license = stdenv.lib.licenses.mit; 19 }; 20 }
··· 16 homepage = http://muparser.sourceforge.net; 17 description = "An extensible high performance math expression parser library written in C++"; 18 license = stdenv.lib.licenses.mit; 19 + platforms = stdenv.lib.platforms.linux; 20 }; 21 }
+1
pkgs/development/libraries/neon/0.29.nix
··· 40 meta = { 41 description = "An HTTP and WebDAV client library"; 42 homepage = http://www.webdav.org/neon/; 43 }; 44 }
··· 40 meta = { 41 description = "An HTTP and WebDAV client library"; 42 homepage = http://www.webdav.org/neon/; 43 + platforms = stdenv.lib.platforms.unix; 44 }; 45 }
+1
pkgs/development/libraries/neon/default.nix
··· 40 meta = { 41 description = "An HTTP and WebDAV client library"; 42 homepage = http://www.webdav.org/neon/; 43 }; 44 }
··· 40 meta = { 41 description = "An HTTP and WebDAV client library"; 42 homepage = http://www.webdav.org/neon/; 43 + platforms = stdenv.lib.platforms.unix; 44 }; 45 }
+1
pkgs/development/libraries/netcdf-cxx4/default.nix
··· 15 description = "C++ API to manipulate netcdf files"; 16 homepage = "http://www.unidata.ucar.edu/software/netcdf/"; 17 license = stdenv.lib.licenses.free; 18 }; 19 }
··· 15 description = "C++ API to manipulate netcdf files"; 16 homepage = "http://www.unidata.ucar.edu/software/netcdf/"; 17 license = stdenv.lib.licenses.free; 18 + platforms = stdenv.lib.platforms.unix; 19 }; 20 }
+1
pkgs/development/libraries/netcdf-fortran/default.nix
··· 16 homepage = "http://www.unidata.ucar.edu/software/netcdf/"; 17 license = stdenv.lib.licenses.free; 18 maintainers = stdenv.lib.maintainers.bzizou; 19 }; 20 }
··· 16 homepage = "http://www.unidata.ucar.edu/software/netcdf/"; 17 license = stdenv.lib.licenses.free; 18 maintainers = stdenv.lib.maintainers.bzizou; 19 + platforms = stdenv.lib.platforms.unix; 20 }; 21 }
+4
pkgs/development/libraries/netcdf/default.nix
··· 28 "--enable-shared" 29 ] 30 ++ (stdenv.lib.optionals mpiSupport [ "--enable-parallel-tests" ]); 31 }
··· 28 "--enable-shared" 29 ] 30 ++ (stdenv.lib.optionals mpiSupport [ "--enable-parallel-tests" ]); 31 + 32 + meta = { 33 + platforms = stdenv.lib.platforms.unix; 34 + }; 35 }
+1
pkgs/development/libraries/ocl-icd/default.nix
··· 14 description = "OpenCL ICD Loader"; 15 homepage = https://forge.imag.fr/projects/ocl-icd/; 16 license = licenses.bsd2; 17 }; 18 }
··· 14 description = "OpenCL ICD Loader"; 15 homepage = https://forge.imag.fr/projects/ocl-icd/; 16 license = licenses.bsd2; 17 + platforms = platforms.linux; 18 }; 19 }
+1
pkgs/development/libraries/ode/default.nix
··· 11 12 meta = { 13 description = "Open Dynamics Engine"; 14 }; 15 }
··· 11 12 meta = { 13 description = "Open Dynamics Engine"; 14 + platforms = stdenv.lib.platforms.linux; 15 }; 16 }
+1
pkgs/development/libraries/ogrepaged/default.nix
··· 20 description = "Paged Geometry for Ogre3D"; 21 homepage = http://code.google.com/p/ogre-paged/; 22 license = stdenv.lib.licenses.mit; 23 }; 24 }
··· 20 description = "Paged Geometry for Ogre3D"; 21 homepage = http://code.google.com/p/ogre-paged/; 22 license = stdenv.lib.licenses.mit; 23 + platforms = stdenv.lib.platforms.linux; 24 }; 25 }
+1
pkgs/development/libraries/oniguruma/default.nix
··· 13 description = "Regular expressions library"; 14 license = stdenv.lib.licenses.bsd2; 15 maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; 16 }; 17 }
··· 13 description = "Regular expressions library"; 14 license = stdenv.lib.licenses.bsd2; 15 maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; 16 + platforms = with stdenv.lib.platforms; unix; 17 }; 18 }
+1
pkgs/development/libraries/opencl-headers/default.nix
··· 19 description = "Khronos OpenCL headers"; 20 homepage = https://www.khronos.org/registry/cl/; 21 license = licenses.mit; 22 }; 23 }
··· 19 description = "Khronos OpenCL headers"; 20 homepage = https://www.khronos.org/registry/cl/; 21 license = licenses.mit; 22 + platforms = platforms.unix; 23 }; 24 }
+3
pkgs/development/libraries/opencl-icd/default.nix
··· 12 sha256 = "1rgaixwnxmrq2aq4kcdvs0yx7i6krakarya9vqs7qwsv5hzc32hc"; 13 }; 14 15 }
··· 12 sha256 = "1rgaixwnxmrq2aq4kcdvs0yx7i6krakarya9vqs7qwsv5hzc32hc"; 13 }; 14 15 + meta = { 16 + platforms = stdenv.lib.platforms.linux; 17 + }; 18 }
+1
pkgs/development/libraries/openh264/default.nix
··· 18 description = "A codec library which supports H.264 encoding and decoding"; 19 homepage = http://www.openh264.org; 20 license = stdenv.lib.licenses.bsd2; 21 }; 22 }
··· 18 description = "A codec library which supports H.264 encoding and decoding"; 19 homepage = http://www.openh264.org; 20 license = stdenv.lib.licenses.bsd2; 21 + platforms = platforms.unix; 22 }; 23 }
+1
pkgs/development/libraries/pangox-compat/default.nix
··· 15 16 homepage = http://www.pango.org/; 17 license = stdenv.lib.licenses.lgpl2Plus; 18 }; 19 }
··· 15 16 homepage = http://www.pango.org/; 17 license = stdenv.lib.licenses.lgpl2Plus; 18 + platforms = stdenv.lib.platforms.unix; 19 }; 20 }
+4
pkgs/development/libraries/pangoxsl/default.nix
··· 12 glib 13 pango 14 ]; 15 }
··· 12 glib 13 pango 14 ]; 15 + 16 + meta = { 17 + platforms = stdenv.lib.platforms.unix; 18 + }; 19 }
+4
pkgs/development/libraries/pdf2xml/default.nix
··· 31 mkdir -p $out/bin 32 cp exe/* $out/bin 33 ''; 34 }
··· 31 mkdir -p $out/bin 32 cp exe/* $out/bin 33 ''; 34 + 35 + meta = { 36 + platforms = stdenv.lib.platforms.unix; 37 + }; 38 }
+1
pkgs/development/libraries/physfs/default.nix
··· 18 homepage = "http://icculus.org/physfs/"; 19 description = "Library to provide abstract access to various archives"; 20 license = stdenv.lib.licenses.free; 21 }; 22 }
··· 18 homepage = "http://icculus.org/physfs/"; 19 description = "Library to provide abstract access to various archives"; 20 license = stdenv.lib.licenses.free; 21 + platforms = stdenv.lib.platforms.linux; 22 }; 23 }
+1
pkgs/development/libraries/pkcs11helper/default.nix
··· 18 homepage = https://www.opensc-project.org/opensc/wiki/pkcs11-helper; 19 license = with licenses; [ "BSD" gpl2 ]; 20 description = "Library that simplifies the interaction with PKCS#11 providers"; 21 }; 22 }
··· 18 homepage = https://www.opensc-project.org/opensc/wiki/pkcs11-helper; 19 license = with licenses; [ "BSD" gpl2 ]; 20 description = "Library that simplifies the interaction with PKCS#11 providers"; 21 + platforms = platforms.unix; 22 }; 23 }
+1
pkgs/development/libraries/plib/default.nix
··· 45 license = stdenv.lib.licenses.lgpl2Plus; 46 47 homepage = http://plib.sourceforge.net/; 48 }; 49 }
··· 45 license = stdenv.lib.licenses.lgpl2Plus; 46 47 homepage = http://plib.sourceforge.net/; 48 + platforms = stdenv.lib.platforms.linux; 49 }; 50 }
+1
pkgs/development/libraries/pocketsphinx/default.nix
··· 16 description = "Voice recognition library written in C"; 17 homepage = http://cmusphinx.sourceforge.net; 18 license = stdenv.lib.licenses.free; 19 }; 20 }
··· 16 description = "Voice recognition library written in C"; 17 homepage = http://cmusphinx.sourceforge.net; 18 license = stdenv.lib.licenses.free; 19 + platforms = stdenv.lib.platforms.linux; 20 }; 21 }
+1
pkgs/development/libraries/polkit-qt-1/qt-4.nix
··· 17 meta = { 18 description = "A Qt wrapper around PolKit"; 19 maintainers = with stdenv.lib.maintainers; [ ttuegel ]; 20 }; 21 }
··· 17 meta = { 18 description = "A Qt wrapper around PolKit"; 19 maintainers = with stdenv.lib.maintainers; [ ttuegel ]; 20 + platforms = with stdenv.lib.platforms; linux; 21 }; 22 }
+1
pkgs/development/libraries/polkit-qt-1/qt-5.nix
··· 25 meta = { 26 description = "A Qt wrapper around PolKit"; 27 maintainers = with stdenv.lib.maintainers; [ ttuegel ]; 28 }; 29 }
··· 25 meta = { 26 description = "A Qt wrapper around PolKit"; 27 maintainers = with stdenv.lib.maintainers; [ ttuegel ]; 28 + platforms = with stdenv.lib.platforms; linux; 29 }; 30 }
+1
pkgs/development/libraries/popt/default.nix
··· 15 16 meta = { 17 description = "Command line option parsing library"; 18 }; 19 }
··· 15 16 meta = { 17 description = "Command line option parsing library"; 18 + platforms = stdenv.lib.platforms.unix; 19 }; 20 }
+1
pkgs/development/libraries/portmidi/default.nix
··· 52 homepage = "http://portmedia.sourceforge.net/portmidi/"; 53 description = "Platform independent library for MIDI I/O"; 54 license = stdenv.lib.licenses.mit; 55 }; 56 }
··· 52 homepage = "http://portmedia.sourceforge.net/portmidi/"; 53 description = "Platform independent library for MIDI I/O"; 54 license = stdenv.lib.licenses.mit; 55 + platforms = stdenv.lib.platforms.linux; 56 }; 57 }
+1
pkgs/development/libraries/ppl/default.nix
··· 51 license = stdenv.lib.licenses.gpl3Plus; 52 53 maintainers = [ ]; 54 }; 55 }
··· 51 license = stdenv.lib.licenses.gpl3Plus; 52 53 maintainers = [ ]; 54 + platforms = stdenv.lib.platforms.unix; 55 }; 56 }
+1
pkgs/development/libraries/protobuf/generic.nix
··· 35 license = "mBSD"; 36 37 homepage = https://developers.google.com/protocol-buffers/; 38 }; 39 40 passthru.version = version;
··· 35 license = "mBSD"; 36 37 homepage = https://developers.google.com/protocol-buffers/; 38 + platforms = stdenv.lib.platforms.unix; 39 }; 40 41 passthru.version = version;
+1
pkgs/development/libraries/pupnp/default.nix
··· 23 license = "BSD-style"; 24 25 homepage = http://pupnp.sourceforge.net/; 26 }; 27 }
··· 23 license = "BSD-style"; 24 25 homepage = http://pupnp.sourceforge.net/; 26 + platforms = stdenv.lib.platforms.unix; 27 }; 28 }
+1
pkgs/development/libraries/qca-qt5/default.nix
··· 16 homepage = http://delta.affinix.com/qca; 17 maintainers = with maintainers; [ ttuegel ]; 18 license = licenses.lgpl21Plus; 19 }; 20 }
··· 16 homepage = http://delta.affinix.com/qca; 17 maintainers = with maintainers; [ ttuegel ]; 18 license = licenses.lgpl21Plus; 19 + platforms = with platforms; linux; 20 }; 21 }
+1
pkgs/development/libraries/qca2/default.nix
··· 20 license = "LGPL"; 21 homepage = http://delta.affinix.com/qca; 22 maintainers = [ maintainers.sander maintainers.urkud ]; 23 }; 24 }
··· 20 license = "LGPL"; 21 homepage = http://delta.affinix.com/qca; 22 maintainers = [ maintainers.sander maintainers.urkud ]; 23 + platforms = platforms.linux; 24 }; 25 }
+1
pkgs/development/libraries/qhull/default.nix
··· 23 homepage = http://www.qhull.org/; 24 description = "Computes the convex hull, Delaunay triangulation, Voronoi diagram and more"; 25 license = stdenv.lib.licenses.free; 26 }; 27 }
··· 23 homepage = http://www.qhull.org/; 24 description = "Computes the convex hull, Delaunay triangulation, Voronoi diagram and more"; 25 license = stdenv.lib.licenses.free; 26 + platforms = stdenv.lib.platforms.unix; 27 }; 28 }
+1
pkgs/development/libraries/qimageblitz/default.nix
··· 21 description = "Graphical effect and filter library for KDE4"; 22 license = stdenv.lib.licenses.bsd2; 23 homepage = "http://${pn}.sourceforge.net"; 24 }; 25 }
··· 21 description = "Graphical effect and filter library for KDE4"; 22 license = stdenv.lib.licenses.bsd2; 23 homepage = "http://${pn}.sourceforge.net"; 24 + platforms = stdenv.lib.platforms.linux; 25 }; 26 }
+4
pkgs/development/libraries/qrupdate/default.nix
··· 33 else "install"; 34 35 buildInputs = [ gfortran openblas ]; 36 }
··· 33 else "install"; 34 35 buildInputs = [ gfortran openblas ]; 36 + 37 + meta = { 38 + platforms = stdenv.lib.platforms.unix; 39 + }; 40 }
+1
pkgs/development/libraries/qscintilla/default.nix
··· 41 ''; 42 homepage = http://www.riverbankcomputing.com/software/qscintilla/intro; 43 license = stdenv.lib.licenses.gpl2; # and gpl3 and commercial 44 }; 45 }
··· 41 ''; 42 homepage = http://www.riverbankcomputing.com/software/qscintilla/intro; 43 license = stdenv.lib.licenses.gpl2; # and gpl3 and commercial 44 + platforms = stdenv.lib.platforms.unix; 45 }; 46 }
+4
pkgs/development/libraries/qt-3/default.nix
··· 71 ]; 72 73 passthru = {inherit mysqlSupport;}; 74 }
··· 71 ]; 72 73 passthru = {inherit mysqlSupport;}; 74 + 75 + meta = { 76 + platforms = stdenv.lib.platforms.linux; 77 + }; 78 }
+1
pkgs/development/libraries/qt-mobility/default.nix
··· 46 description = "Qt Mobility"; 47 homepage = http://qt.nokia.com/products/qt-addons/mobility; 48 maintainers = with stdenv.lib.maintainers; [qknight]; 49 }; 50 } 51
··· 46 description = "Qt Mobility"; 47 homepage = http://qt.nokia.com/products/qt-addons/mobility; 48 maintainers = with stdenv.lib.maintainers; [qknight]; 49 + platforms = with stdenv.lib.platforms; linux; 50 }; 51 } 52
+1
pkgs/development/libraries/qtkeychain/default.nix
··· 19 description = "Platform-independent Qt API for storing passwords securely"; 20 homepage = "https://github.com/frankosterfeld/qtkeychain"; 21 license = stdenv.lib.licenses.bsd3; 22 }; 23 }
··· 19 description = "Platform-independent Qt API for storing passwords securely"; 20 homepage = "https://github.com/frankosterfeld/qtkeychain"; 21 license = stdenv.lib.licenses.bsd3; 22 + platforms = stdenv.lib.platforms.linux; 23 }; 24 }
+1
pkgs/development/libraries/readline/5.x.nix
··· 13 patches = stdenv.lib.optional stdenv.isDarwin ./shobj-darwin.patch; 14 meta = { 15 branch = "5"; 16 }; 17 }
··· 13 patches = stdenv.lib.optional stdenv.isDarwin ./shobj-darwin.patch; 14 meta = { 15 branch = "5"; 16 + platforms = stdenv.lib.platforms.unix; 17 }; 18 }
+1
pkgs/development/libraries/readline/6.2.nix
··· 50 51 maintainers = [ ]; 52 branch = "6.2"; 53 }; 54 } 55
··· 50 51 maintainers = [ ]; 52 branch = "6.2"; 53 + platforms = stdenv.lib.platforms.unix; 54 }; 55 } 56
+1
pkgs/development/libraries/readosm/default.nix
··· 18 description = "An open source library to extract valid data from within an Open Street Map input file"; 19 homepage = https://www.gaia-gis.it/fossil/readosm; 20 license = with stdenv.lib.licenses; [ mpl11 gpl2Plus lgpl21Plus ]; 21 }; 22 }
··· 18 description = "An open source library to extract valid data from within an Open Street Map input file"; 19 homepage = https://www.gaia-gis.it/fossil/readosm; 20 license = with stdenv.lib.licenses; [ mpl11 gpl2Plus lgpl21Plus ]; 21 + platforms = stdenv.lib.platforms.linux; 22 }; 23 }
+1
pkgs/development/libraries/rlog/default.nix
··· 11 meta = { 12 homepage = http://www.arg0.net/rlog; 13 description = "A C++ logging library used in encfs"; 14 }; 15 }
··· 11 meta = { 12 homepage = http://www.arg0.net/rlog; 13 description = "A C++ logging library used in encfs"; 14 + platforms = stdenv.lib.platforms.linux; 15 }; 16 }
+1
pkgs/development/libraries/science/math/arpack/default.nix
··· 33 ''; 34 license = stdenv.lib.licenses.bsd3; 35 maintainers = [ stdenv.lib.maintainers.ttuegel ]; 36 }; 37 }
··· 33 ''; 34 license = stdenv.lib.licenses.bsd3; 35 maintainers = [ stdenv.lib.maintainers.ttuegel ]; 36 + platforms = stdenv.lib.platforms.unix; 37 }; 38 }
+1
pkgs/development/libraries/science/math/blas/default.nix
··· 50 description = "Basic Linear Algebra Subprograms"; 51 license = stdenv.lib.licenses.publicDomain; 52 homepage = "http://www.netlib.org/blas/"; 53 }; 54 }
··· 50 description = "Basic Linear Algebra Subprograms"; 51 license = stdenv.lib.licenses.publicDomain; 52 homepage = "http://www.netlib.org/blas/"; 53 + platforms = stdenv.lib.platforms.unix; 54 }; 55 }
+1
pkgs/development/libraries/science/math/liblbfgs/default.nix
··· 12 description = "Library of Limited-memory Broyden-Fletcher-Goldfarb-Shanno (L-BFGS)"; 13 homepage = http://www.chokkan.org/software/liblbfgs/; 14 license = stdenv.lib.licenses.mit; 15 }; 16 }
··· 12 description = "Library of Limited-memory Broyden-Fletcher-Goldfarb-Shanno (L-BFGS)"; 13 homepage = http://www.chokkan.org/software/liblbfgs/; 14 license = stdenv.lib.licenses.mit; 15 + platforms = stdenv.lib.platforms.unix; 16 }; 17 }
+1
pkgs/development/libraries/science/math/suitesparse/4.2.nix
··· 40 description = "A suite of sparse matrix algorithms"; 41 license = with licenses; [ bsd2 gpl2Plus lgpl21Plus ]; 42 maintainers = with maintainers; [ ttuegel ]; 43 }; 44 }
··· 40 description = "A suite of sparse matrix algorithms"; 41 license = with licenses; [ bsd2 gpl2Plus lgpl21Plus ]; 42 maintainers = with maintainers; [ ttuegel ]; 43 + platforms = with platforms; unix; 44 }; 45 }
+1
pkgs/development/libraries/science/math/suitesparse/default.nix
··· 78 description = "A suite of sparse matrix algorithms"; 79 license = with licenses; [ bsd2 gpl2Plus lgpl21Plus ]; 80 maintainers = with maintainers; [ ttuegel ]; 81 }; 82 }
··· 78 description = "A suite of sparse matrix algorithms"; 79 license = with licenses; [ bsd2 gpl2Plus lgpl21Plus ]; 80 maintainers = with maintainers; [ ttuegel ]; 81 + platforms = with platforms; unix; 82 }; 83 }
+4
pkgs/development/libraries/sdformat/default.nix
··· 20 buildInputs = [ 21 cmake boost ruby ignition.math2 tinyxml 22 ]; 23 }
··· 20 buildInputs = [ 21 cmake boost ruby ignition.math2 tinyxml 22 ]; 23 + 24 + meta = { 25 + platforms = stdenv.lib.platforms.unix; 26 + }; 27 }
+1 -1
pkgs/development/libraries/serf/default.nix
··· 37 description = "HTTP client library based on APR"; 38 license = stdenv.lib.licenses.asl20; 39 maintainers = [stdenv.lib.maintainers.raskin]; 40 - hydraPlatforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; 41 }; 42 }
··· 37 description = "HTTP client library based on APR"; 38 license = stdenv.lib.licenses.asl20; 39 maintainers = [stdenv.lib.maintainers.raskin]; 40 + platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; 41 }; 42 }
+1
pkgs/development/libraries/sfml/default.nix
··· 25 ''; 26 license = licenses.zlib; 27 maintainers = [ maintainers.astsmtl ]; 28 }; 29 }
··· 25 ''; 26 license = licenses.zlib; 27 maintainers = [ maintainers.astsmtl ]; 28 + platforms = platforms.linux; 29 }; 30 }
+1
pkgs/development/libraries/sfsexp/default.nix
··· 14 homepage = "http://sexpr.sourceforge.net/"; 15 maintainers = with maintainers; [ jb55 ]; 16 license = licenses.gpl3; 17 }; 18 }
··· 14 homepage = "http://sexpr.sourceforge.net/"; 15 maintainers = with maintainers; [ jb55 ]; 16 license = licenses.gpl3; 17 + platforms = with platforms; unix; 18 }; 19 }
+1 -1
pkgs/development/libraries/silgraphite/default.nix
··· 16 meta = { 17 description = "An advanced font engine"; 18 maintainers = [ stdenv.lib.maintainers.raskin ]; 19 - hydraPlatforms = stdenv.lib.platforms.linux; 20 }; 21 }
··· 16 meta = { 17 description = "An advanced font engine"; 18 maintainers = [ stdenv.lib.maintainers.raskin ]; 19 + platforms = stdenv.lib.platforms.linux; 20 }; 21 }
+1 -1
pkgs/development/libraries/silgraphite/graphite2.nix
··· 17 meta = { 18 description = "An advanced font engine"; 19 maintainers = [ stdenv.lib.maintainers.raskin ]; 20 - hydraPlatforms = stdenv.lib.platforms.unix; 21 }; 22 }
··· 17 meta = { 18 description = "An advanced font engine"; 19 maintainers = [ stdenv.lib.maintainers.raskin ]; 20 + platforms = stdenv.lib.platforms.unix; 21 }; 22 }
+1
pkgs/development/libraries/slib/default.nix
··· 57 homepage = http://people.csail.mit.edu/jaffer/SLIB; 58 59 maintainers = [ ]; 60 }; 61 }
··· 57 homepage = http://people.csail.mit.edu/jaffer/SLIB; 58 59 maintainers = [ ]; 60 + platforms = stdenv.lib.platforms.unix; 61 }; 62 }
+1
pkgs/development/libraries/smpeg/default.nix
··· 40 homepage = http://icculus.org/smpeg/; 41 description = "MPEG decoding library"; 42 license = stdenv.lib.licenses.gpl2Plus; 43 }; 44 }
··· 40 homepage = http://icculus.org/smpeg/; 41 description = "MPEG decoding library"; 42 license = stdenv.lib.licenses.gpl2Plus; 43 + platforms = stdenv.lib.platforms.unix; 44 }; 45 }
+4
pkgs/development/libraries/sofia-sip/default.nix
··· 10 11 buildInputs = [ glib openssl ]; 12 nativeBuildInputs = [ pkgconfig ]; 13 }
··· 10 11 buildInputs = [ glib openssl ]; 12 nativeBuildInputs = [ pkgconfig ]; 13 + 14 + meta = { 15 + platforms = stdenv.lib.platforms.linux; 16 + }; 17 }
+1
pkgs/development/libraries/spatialite-tools/default.nix
··· 18 description = "A complete sqlite3-compatible CLI front-end for libspatialite"; 19 homepage = https://www.gaia-gis.it/fossil/spatialite-tools; 20 license = with stdenv.lib.licenses; [ mpl11 gpl2Plus lgpl21Plus ]; 21 }; 22 }
··· 18 description = "A complete sqlite3-compatible CLI front-end for libspatialite"; 19 homepage = https://www.gaia-gis.it/fossil/spatialite-tools; 20 license = with stdenv.lib.licenses; [ mpl11 gpl2Plus lgpl21Plus ]; 21 + platforms = stdenv.lib.platforms.linux; 22 }; 23 }
+3 -1
pkgs/development/libraries/t1lib/default.nix
··· 29 30 postInstall = stdenv.lib.optional (!stdenv.isDarwin) "chmod +x $out/lib/*.so.*"; # ?? 31 32 } 33 -
··· 29 30 postInstall = stdenv.lib.optional (!stdenv.isDarwin) "chmod +x $out/lib/*.so.*"; # ?? 31 32 + meta = { 33 + platforms = stdenv.lib.platforms.unix; 34 + }; 35 }
+4
pkgs/development/libraries/taglib-extras/default.nix
··· 13 preConfigure = '' 14 sed -i -e 's/STRLESS/VERSION_LESS/g' cmake/modules/FindTaglib.cmake 15 ''; 16 }
··· 13 preConfigure = '' 14 sed -i -e 's/STRLESS/VERSION_LESS/g' cmake/modules/FindTaglib.cmake 15 ''; 16 + 17 + meta = { 18 + platforms = stdenv.lib.platforms.unix; 19 + }; 20 }
+1
pkgs/development/libraries/tcllib/default.nix
··· 19 homepage = "http://tcl.activestate.com/software/tcllib/"; 20 description = "Tcl-only library of standard routines for Tcl"; 21 license = stdenv.lib.licenses.tcltk; 22 }; 23 }
··· 19 homepage = "http://tcl.activestate.com/software/tcllib/"; 20 description = "Tcl-only library of standard routines for Tcl"; 21 license = stdenv.lib.licenses.tcltk; 22 + platforms = stdenv.lib.platforms.unix; 23 }; 24 }
+1
pkgs/development/libraries/tcltls/default.nix
··· 27 homepage = "http://tls.sourceforge.net/"; 28 description = "An OpenSSL / RSA-bsafe Tcl extension"; 29 license = stdenv.lib.licenses.tcltk; 30 }; 31 }
··· 27 homepage = "http://tls.sourceforge.net/"; 28 description = "An OpenSSL / RSA-bsafe Tcl extension"; 29 license = stdenv.lib.licenses.tcltk; 30 + platforms = stdenv.lib.platforms.unix; 31 }; 32 }
+1 -1
pkgs/development/libraries/tecla/default.nix
··· 15 description = "Command-line editing library"; 16 license = "as-is"; 17 18 - hydraPlatforms = stdenv.lib.platforms.linux; 19 maintainers = [ stdenv.lib.maintainers.peti ]; 20 }; 21 }
··· 15 description = "Command-line editing library"; 16 license = "as-is"; 17 18 + platforms = stdenv.lib.platforms.unix; 19 maintainers = [ stdenv.lib.maintainers.peti ]; 20 }; 21 }
+4
pkgs/development/libraries/telepathy/farstream/default.nix
··· 11 12 propagatedBuildInputs = [ dbus_glib telepathy_glib farstream ]; 13 nativeBuildInputs = [ pkgconfig ]; 14 }
··· 11 12 propagatedBuildInputs = [ dbus_glib telepathy_glib farstream ]; 13 nativeBuildInputs = [ pkgconfig ]; 14 + 15 + meta = { 16 + platforms = stdenv.lib.platforms.linux; 17 + }; 18 }
+1
pkgs/development/libraries/telepathy/glib/default.nix
··· 21 22 meta = { 23 homepage = http://telepathy.freedesktop.org; 24 }; 25 }
··· 21 22 meta = { 23 homepage = http://telepathy.freedesktop.org; 24 + platforms = stdenv.lib.platforms.unix; 25 }; 26 }
+4
pkgs/development/libraries/tinyxml-2/default.nix
··· 8 }; 9 10 nativeBuildInputs = [ cmake ]; 11 }
··· 8 }; 9 10 nativeBuildInputs = [ cmake ]; 11 + 12 + meta = { 13 + platforms = stdenv.lib.platforms.unix; 14 + }; 15 }
+1
pkgs/development/libraries/tinyxml/2.6.2.nix
··· 69 description = "Simple, small, C++ XML parser that can be easily integrating into other programs"; 70 homepage = "http://www.grinninglizard.com/tinyxml/index.html"; 71 license = stdenv.lib.licenses.free; 72 }; 73 }
··· 69 description = "Simple, small, C++ XML parser that can be easily integrating into other programs"; 70 homepage = "http://www.grinninglizard.com/tinyxml/index.html"; 71 license = stdenv.lib.licenses.free; 72 + platforms = stdenv.lib.platforms.unix; 73 }; 74 }
+2 -1
pkgs/development/libraries/tnt/default.nix
··· 19 meta = { 20 homepage = http://math.nist.gov/tnt/; 21 description = "Template Numerical Toolkit: C++ headers for array and matrices"; 22 }; 23 - }
··· 19 meta = { 20 homepage = http://math.nist.gov/tnt/; 21 description = "Template Numerical Toolkit: C++ headers for array and matrices"; 22 + platforms = stdenv.lib.platforms.unix; 23 }; 24 + }
+3
pkgs/development/libraries/tre/default.nix
··· 7 sha256 = "1pd7qsa7vc3ybdc6h2gr4pm9inypjysf92kab945gg4qa6jp11my"; 8 }; 9 10 }
··· 7 sha256 = "1pd7qsa7vc3ybdc6h2gr4pm9inypjysf92kab945gg4qa6jp11my"; 8 }; 9 10 + meta = { 11 + platforms = stdenv.lib.platforms.unix; 12 + }; 13 }
+1
pkgs/development/libraries/tremor/default.nix
··· 20 homepage = http://xiph.org/tremor/; 21 description = "Fixed-point version of the Ogg Vorbis decoder"; 22 license = stdenv.lib.licenses.bsd3; 23 }; 24 }
··· 20 homepage = http://xiph.org/tremor/; 21 description = "Fixed-point version of the Ogg Vorbis decoder"; 22 license = stdenv.lib.licenses.bsd3; 23 + platforms = stdenv.lib.platforms.unix; 24 }; 25 }
+1
pkgs/development/libraries/ucl/default.nix
··· 11 homepage = http://www.oberhumer.com/opensource/ucl/; 12 description = "Portable lossless data compression library"; 13 license = stdenv.lib.licenses.gpl2; 14 }; 15 }
··· 11 homepage = http://www.oberhumer.com/opensource/ucl/; 12 description = "Portable lossless data compression library"; 13 license = stdenv.lib.licenses.gpl2; 14 + platforms = stdenv.lib.platforms.unix; 15 }; 16 }
+1
pkgs/development/libraries/uhttpmock/default.nix
··· 20 homepage = https://gitlab.com/groups/uhttpmock/; 21 license = licenses.lgpl21; 22 maintainers = with maintainers; [ DamienCassou ]; 23 }; 24 }
··· 20 homepage = https://gitlab.com/groups/uhttpmock/; 21 license = licenses.lgpl21; 22 maintainers = with maintainers; [ DamienCassou ]; 23 + platforms = with platforms; linux; 24 }; 25 }
+1
pkgs/development/libraries/unittest-cpp/default.nix
··· 22 description = "Lightweight unit testing framework for C++"; 23 license = licenses.mit; 24 maintainers = [maintainers.tohl]; 25 }; 26 }
··· 22 description = "Lightweight unit testing framework for C++"; 23 license = licenses.mit; 24 maintainers = [maintainers.tohl]; 25 + platforms = stdenv.lib.platforms.unix; 26 }; 27 }
+1
pkgs/development/libraries/ustr/default.nix
··· 39 description = "Micro String API for C language"; 40 license = licenses.bsd2; 41 maintainers = [ maintainers.phreedom ]; 42 }; 43 }
··· 39 description = "Micro String API for C language"; 40 license = licenses.bsd2; 41 maintainers = [ maintainers.phreedom ]; 42 + platforms = platforms.linux; 43 }; 44 }
+1
pkgs/development/libraries/vaapi-vdpau/default.nix
··· 31 homepage = http://cgit.freedesktop.org/vaapi/vdpau-driver/; 32 license = stdenv.lib.licenses.gpl2Plus; 33 description = "VDPAU driver for the VAAPI library"; 34 }; 35 }
··· 31 homepage = http://cgit.freedesktop.org/vaapi/vdpau-driver/; 32 license = stdenv.lib.licenses.gpl2Plus; 33 description = "VDPAU driver for the VAAPI library"; 34 + platforms = stdenv.lib.platforms.linux; 35 }; 36 }
+1
pkgs/development/libraries/vrpn/default.nix
··· 29 license = stdenv.lib.licenses.boost; 30 # see # <http://www.cs.unc.edu/Research/vrpn/obtaining_vrpn.html> 31 32 }; 33 }
··· 29 license = stdenv.lib.licenses.boost; 30 # see # <http://www.cs.unc.edu/Research/vrpn/obtaining_vrpn.html> 31 32 + platforms = stdenv.lib.platforms.linux; 33 }; 34 }
+1
pkgs/development/libraries/wcslib/default.nix
··· 23 astronomy.''; 24 25 license = stdenv.lib.licenses.lgpl3Plus; 26 }; 27 }
··· 23 astronomy.''; 24 25 license = stdenv.lib.licenses.lgpl3Plus; 26 + platforms = stdenv.lib.platforms.unix; 27 }; 28 }
+1
pkgs/development/libraries/websocket++/default.nix
··· 17 homepage = "http://www.zaphoyd.com/websocketpp/"; 18 description = "C++/Boost Asio based websocket client/server library"; 19 license = stdenv.lib.licenses.bsd3; 20 }; 21 }
··· 17 homepage = "http://www.zaphoyd.com/websocketpp/"; 18 description = "C++/Boost Asio based websocket client/server library"; 19 license = stdenv.lib.licenses.bsd3; 20 + platforms = stdenv.lib.platforms.unix; 21 }; 22 }
+1
pkgs/development/libraries/xapian/bindings/default.nix
··· 69 homepage = xapian.meta.homepage; 70 license = stdenv.lib.licenses.gpl2Plus; 71 maintainers = [ stdenv.lib.maintainers.chaoflow ]; 72 }; 73 }
··· 69 homepage = xapian.meta.homepage; 70 license = stdenv.lib.licenses.gpl2Plus; 71 maintainers = [ stdenv.lib.maintainers.chaoflow ]; 72 + platforms = stdenv.lib.platforms.unix; 73 }; 74 }
+1
pkgs/development/libraries/xapian/default.nix
··· 18 homepage = http://xapian.org/; 19 license = stdenv.lib.licenses.gpl2Plus; 20 maintainers = [ stdenv.lib.maintainers.chaoflow ]; 21 }; 22 }
··· 18 homepage = http://xapian.org/; 19 license = stdenv.lib.licenses.gpl2Plus; 20 maintainers = [ stdenv.lib.maintainers.chaoflow ]; 21 + platforms = stdenv.lib.platforms.unix; 22 }; 23 }
+1
pkgs/development/libraries/xine-lib/default.nix
··· 29 meta = { 30 homepage = http://www.xine-project.org/; 31 description = "A high-performance, portable and reusable multimedia playback engine"; 32 }; 33 }
··· 29 meta = { 30 homepage = http://www.xine-project.org/; 31 description = "A high-performance, portable and reusable multimedia playback engine"; 32 + platforms = stdenv.lib.platforms.linux; 33 }; 34 }
+4
pkgs/development/libraries/xlibs-wrapper/default.nix
··· 14 } // { 15 # For compatability with XFree86. 16 buildClientLibs = true; 17 }
··· 14 } // { 15 # For compatability with XFree86. 16 buildClientLibs = true; 17 + 18 + meta = { 19 + platforms = stdenv.lib.platforms.unix; 20 + }; 21 }
+1
pkgs/development/libraries/zeromq/2.x.nix
··· 14 branch = "2"; 15 homepage = "http://www.zeromq.org"; 16 description = "The Intelligent Transport Layer"; 17 }; 18 }
··· 14 branch = "2"; 15 homepage = "http://www.zeromq.org"; 16 description = "The Intelligent Transport Layer"; 17 + platforms = stdenv.lib.platforms.unix; 18 }; 19 }
+1 -1
pkgs/development/libraries/zeromq/3.x.nix
··· 15 homepage = "http://www.zeromq.org"; 16 description = "The Intelligent Transport Layer"; 17 license = licenses.gpl3; 18 - platform = platforms.all; 19 maintainers = with maintainers; [ wkennington ]; 20 }; 21 }
··· 15 homepage = "http://www.zeromq.org"; 16 description = "The Intelligent Transport Layer"; 17 license = licenses.gpl3; 18 + platforms = platforms.all; 19 maintainers = with maintainers; [ wkennington ]; 20 }; 21 }
+1
pkgs/development/libraries/zimlib/default.nix
··· 17 homepage = http://www.openzim.org/wiki/Zimlib; 18 license = stdenv.lib.licenses.gpl2; 19 maintainers = with stdenv.lib.maintainers; [ robbinch ]; 20 }; 21 }
··· 17 homepage = http://www.openzim.org/wiki/Zimlib; 18 license = stdenv.lib.licenses.gpl2; 19 maintainers = with stdenv.lib.maintainers; [ robbinch ]; 20 + platforms = with stdenv.lib.platforms; linux; 21 }; 22 }
+5
pkgs/development/mobile/androidenv/androidndk.nix
··· 77 wrapProgram "${bin_path}/$i" --prefix PATH : "${runtime_paths}" 78 done 79 ''; 80 }
··· 77 wrapProgram "${bin_path}/$i" --prefix PATH : "${runtime_paths}" 78 done 79 ''; 80 + 81 + meta = { 82 + platforms = stdenv.lib.platforms.linux; 83 + hydraPlatforms = []; 84 + }; 85 }
+5
pkgs/development/mobile/androidenv/androidsdk.nix
··· 232 ''; 233 234 buildInputs = [ unzip makeWrapper ]; 235 }
··· 232 ''; 233 234 buildInputs = [ unzip makeWrapper ]; 235 + 236 + meta = { 237 + platforms = stdenv.lib.platforms.unix; 238 + hydraPlatforms = []; 239 + }; 240 }
+1
pkgs/development/ocaml-modules/ocamlmake/default.nix
··· 24 homepage = "http://www.ocaml.info/home/ocaml_sources.html"; 25 description = "Generic OCaml Makefile for GNU Make"; 26 license = "LGPL"; 27 }; 28 }
··· 24 homepage = "http://www.ocaml.info/home/ocaml_sources.html"; 25 description = "Generic OCaml Makefile for GNU Make"; 26 license = "LGPL"; 27 + platforms = stdenv.lib.platforms.unix; 28 }; 29 }
+1
pkgs/development/python-modules/libsexy/default.nix
··· 23 24 meta = { 25 description = "Python libsexy bindings"; 26 }; 27 }
··· 23 24 meta = { 25 description = "Python libsexy bindings"; 26 + platforms = stdenv.lib.platforms.linux; 27 }; 28 }
+1
pkgs/development/python-modules/pyatspi/default.nix
··· 23 homepage = http://www.linuxfoundation.org/en/AT-SPI_on_D-Bus; 24 license = licenses.gpl2; 25 maintainers = with maintainers; [ jgeerds ]; 26 }; 27 }
··· 23 homepage = http://www.linuxfoundation.org/en/AT-SPI_on_D-Bus; 24 license = licenses.gpl2; 25 maintainers = with maintainers; [ jgeerds ]; 26 + platforms = with platforms; unix; 27 }; 28 }
+4
pkgs/development/python-modules/pyexiv2/default.nix
··· 20 ''; 21 22 buildInputs = [ python exiv2 scons boost ]; 23 }
··· 20 ''; 21 22 buildInputs = [ python exiv2 scons boost ]; 23 + 24 + meta = { 25 + platforms = stdenv.lib.platforms.linux; 26 + }; 27 }
+1
pkgs/development/python-modules/pygobject/3.nix
··· 18 meta = { 19 homepage = http://live.gnome.org/PyGObject; 20 description = "Python bindings for Glib"; 21 }; 22 }
··· 18 meta = { 19 homepage = http://live.gnome.org/PyGObject; 20 description = "Python bindings for Glib"; 21 + platforms = stdenv.lib.platforms.unix; 22 }; 23 }
+1
pkgs/development/python-modules/pygobject/default.nix
··· 33 meta = { 34 homepage = http://live.gnome.org/PyGObject; 35 description = "Python bindings for Glib"; 36 }; 37 }
··· 33 meta = { 34 homepage = http://live.gnome.org/PyGObject; 35 description = "Python bindings for Glib"; 36 + platforms = stdenv.lib.platforms.unix; 37 }; 38 }
+4
pkgs/development/python-modules/pygtksourceview/default.nix
··· 13 patches = [ ./codegendir.patch ]; 14 15 buildInputs = [ python pkgconfig pygobject glib pygtk gnome2.gtksourceview ]; 16 }
··· 13 patches = [ ./codegendir.patch ]; 14 15 buildInputs = [ python pkgconfig pygobject glib pygtk gnome2.gtksourceview ]; 16 + 17 + meta = { 18 + platforms = stdenv.lib.platforms.unix; 19 + }; 20 }
+1
pkgs/development/python-modules/stringtemplate/default.nix
··· 20 meta = { 21 homepage = "http://www.stringtemplate.org/"; 22 description = "Text Templating Library"; 23 }; 24 }
··· 20 meta = { 21 homepage = "http://www.stringtemplate.org/"; 22 description = "Text Templating Library"; 23 + platforms = stdenv.lib.platforms.linux; 24 }; 25 }
+4
pkgs/development/r-modules/wrapper.nix
··· 15 --prefix "R_LIBS_SITE" ":" "$R_LIBS_SITE" 16 done 17 ''; 18 }
··· 15 --prefix "R_LIBS_SITE" ":" "$R_LIBS_SITE" 16 done 17 ''; 18 + 19 + meta = { 20 + platforms = stdenv.lib.platforms.unix; 21 + }; 22 }
+1
pkgs/development/tools/activator/default.nix
··· 26 homepage = "http://typesafe.com/activator"; 27 license = licenses.asl20; 28 maintainers = with maintainers; [ edwtjo cko ]; 29 }; 30 31 }
··· 26 homepage = "http://typesafe.com/activator"; 27 license = licenses.asl20; 28 maintainers = with maintainers; [ edwtjo cko ]; 29 + platforms = with platforms; unix; 30 }; 31 32 }
+1
pkgs/development/tools/analysis/checkstyle/default.nix
··· 24 homepage = http://checkstyle.sourceforge.net/; 25 license = licenses.lgpl21; 26 maintainers = with maintainers; [ pSub ]; 27 }; 28 }
··· 24 homepage = http://checkstyle.sourceforge.net/; 25 license = licenses.lgpl21; 26 maintainers = with maintainers; [ pSub ]; 27 + platforms = with platforms; linux; 28 }; 29 }
+1
pkgs/development/tools/analysis/emma/default.nix
··· 18 meta = { 19 homepage = http://emma.sourceforge.net/; 20 description = "A code coverage tool for Java"; 21 }; 22 }
··· 18 meta = { 19 homepage = http://emma.sourceforge.net/; 20 description = "A code coverage tool for Java"; 21 + platforms = stdenv.lib.platforms.unix; 22 }; 23 }
+1
pkgs/development/tools/analysis/findbugs/default.nix
··· 38 description = "A static analysis tool to find bugs in Java programs automatically"; 39 homepage = http://findbugs.sourceforge.net/; 40 maintainers = with maintainers; [ pSub ]; 41 }; 42 }
··· 38 description = "A static analysis tool to find bugs in Java programs automatically"; 39 homepage = http://findbugs.sourceforge.net/; 40 maintainers = with maintainers; [ pSub ]; 41 + platforms = with platforms; unix; 42 }; 43 }
+5 -4
pkgs/development/tools/analysis/kcov/default.nix
··· 1 {stdenv, fetchurl, cmake, pkgconfig, zlib, curl, elfutils, python, libiberty, binutils}: 2 stdenv.mkDerivation rec { 3 name = "kcov-${version}"; 4 version = "29"; ··· 10 11 preConfigure = "patchShebangs src/bin-to-c-source.py"; 12 buildInputs = [ cmake pkgconfig zlib curl elfutils python libiberty binutils ]; 13 - 14 meta = with stdenv.lib; { 15 description = "Code coverage tester for compiled programs, Python scripts and shell scripts"; 16 ··· 26 license = licenses.gpl2; 27 28 maintainers = [ maintainers.gal_bolle ]; 29 - }; 30 - 31 - }
··· 1 {stdenv, fetchurl, cmake, pkgconfig, zlib, curl, elfutils, python, libiberty, binutils}: 2 + 3 stdenv.mkDerivation rec { 4 name = "kcov-${version}"; 5 version = "29"; ··· 11 12 preConfigure = "patchShebangs src/bin-to-c-source.py"; 13 buildInputs = [ cmake pkgconfig zlib curl elfutils python libiberty binutils ]; 14 + 15 meta = with stdenv.lib; { 16 description = "Code coverage tester for compiled programs, Python scripts and shell scripts"; 17 ··· 27 license = licenses.gpl2; 28 29 maintainers = [ maintainers.gal_bolle ]; 30 + platforms = platforms.linux; 31 + }; 32 + }
+1
pkgs/development/tools/analysis/pmd/default.nix
··· 19 meta = { 20 description = "Scans Java source code and looks for potential problems"; 21 homepage = http://pmd.sourceforge.net/; 22 }; 23 } 24
··· 19 meta = { 20 description = "Scans Java source code and looks for potential problems"; 21 homepage = http://pmd.sourceforge.net/; 22 + platforms = stdenv.lib.platforms.unix; 23 }; 24 } 25
+1
pkgs/development/tools/analysis/smatch/default.nix
··· 29 description = "A semantic analysis tool for C"; 30 homepage = "http://smatch.sourceforge.net/"; 31 license = stdenv.lib.licenses.free; /* OSL, see http://www.opensource.org */ 32 }; 33 }
··· 29 description = "A semantic analysis tool for C"; 30 homepage = "http://smatch.sourceforge.net/"; 31 license = stdenv.lib.licenses.free; /* OSL, see http://www.opensource.org */ 32 + platforms = stdenv.lib.platforms.linux; 33 }; 34 }
+1
pkgs/development/tools/apktool/default.nix
··· 33 homepage = https://code.google.com/p/android-apktool/; 34 license = licenses.asl20; 35 maintainers = with maintainers; [ offline ]; 36 }; 37 38 }
··· 33 homepage = https://code.google.com/p/android-apktool/; 34 license = licenses.asl20; 35 maintainers = with maintainers; [ offline ]; 36 + platforms = with platforms; unix; 37 }; 38 39 }
+1
pkgs/development/tools/build-managers/apache-maven/default.nix
··· 21 description = "Build automation tool (used primarily for Java projects)"; 22 homepage = http://maven.apache.org/; 23 license = licenses.asl20; 24 }; 25 }
··· 21 description = "Build automation tool (used primarily for Java projects)"; 22 homepage = http://maven.apache.org/; 23 license = licenses.asl20; 24 + platforms = platforms.unix; 25 }; 26 }
+1
pkgs/development/tools/build-managers/bazel/default.nix
··· 25 description = "Build tool that builds code quickly and reliably"; 26 license = stdenv.lib.licenses.asl20; 27 maintainers = [ stdenv.lib.maintainers.philandstuff ]; 28 }; 29 }
··· 25 description = "Build tool that builds code quickly and reliably"; 26 license = stdenv.lib.licenses.asl20; 27 maintainers = [ stdenv.lib.maintainers.philandstuff ]; 28 + platforms = stdenv.lib.platforms.linux; 29 }; 30 }
+1
pkgs/development/tools/build-managers/colormake/default.nix
··· 20 meta = { 21 description = "Simple wrapper around make to colorize the output"; 22 license = stdenv.lib.licenses.gpl2; 23 }; 24 }
··· 20 meta = { 21 description = "Simple wrapper around make to colorize the output"; 22 license = stdenv.lib.licenses.gpl2; 23 + platforms = stdenv.lib.platforms.unix; 24 }; 25 }
+4
pkgs/development/tools/build-managers/gnumake/3.80/default.nix
··· 7 md5 = "0bbd1df101bc0294d440471e50feca71"; 8 }; 9 patches = [./log.patch]; 10 }
··· 7 md5 = "0bbd1df101bc0294d440471e50feca71"; 8 }; 9 patches = [./log.patch]; 10 + 11 + meta = { 12 + platforms = stdenv.lib.platforms.unix; 13 + }; 14 }
+1
pkgs/development/tools/build-managers/gnumake/3.81/default.nix
··· 43 44 license = stdenv.lib.licenses.gpl2Plus; 45 maintainers = [ ]; 46 }; 47 }
··· 43 44 license = stdenv.lib.licenses.gpl2Plus; 45 maintainers = [ ]; 46 + platforms = stdenv.lib.platforms.unix; 47 }; 48 }
+4
pkgs/development/tools/build-managers/gnustep/make/default.nix
··· 31 . $out/Library/GNUstep/Makefiles/GNUstep.sh 32 EOF 33 ''; 34 }
··· 31 . $out/Library/GNUstep/Makefiles/GNUstep.sh 32 EOF 33 ''; 34 + 35 + meta = { 36 + platforms = stdenv.lib.platforms.unix; 37 + }; 38 }
+1
pkgs/development/tools/build-managers/gradle/default.nix
··· 47 ''; 48 homepage = http://www.gradle.org/; 49 license = stdenv.lib.licenses.asl20; 50 }; 51 }; 52
··· 47 ''; 48 homepage = http://www.gradle.org/; 49 license = stdenv.lib.licenses.asl20; 50 + platforms = stdenv.lib.platforms.unix; 51 }; 52 }; 53
+1
pkgs/development/tools/build-managers/jam/default.nix
··· 24 homepage = http://public.perforce.com/wiki/Jam; 25 license = stdenv.lib.licenses.free; 26 description = "Just Another Make"; 27 }; 28 }
··· 24 homepage = http://public.perforce.com/wiki/Jam; 25 license = stdenv.lib.licenses.free; 26 description = "Just Another Make"; 27 + platforms = stdenv.lib.platforms.linux; 28 }; 29 }
+4
pkgs/development/tools/build-managers/mk/default.nix
··· 7 md5 = "167fd4e0eea4f49def01984ec203289b"; 8 }; 9 builder = ./builder.sh; 10 }
··· 7 md5 = "167fd4e0eea4f49def01984ec203289b"; 8 }; 9 builder = ./builder.sh; 10 + 11 + meta = { 12 + platforms = stdenv.lib.platforms.unix; 13 + }; 14 }
+1
pkgs/development/tools/database/liquibase/default.nix
··· 28 homepage = "http://www.liquibase.org/"; 29 license = licenses.asl20; 30 maintainers = with maintainers; [ nequissimus ]; 31 }; 32 }
··· 28 homepage = "http://www.liquibase.org/"; 29 license = licenses.asl20; 30 maintainers = with maintainers; [ nequissimus ]; 31 + platforms = with platforms; unix; 32 }; 33 }
+1
pkgs/development/tools/erlang/cuter/default.nix
··· 39 license = stdenv.lib.licenses.gpl3; 40 homepage = "https://github.com/aggelgian/cuter"; 41 maintainers = with stdenv.lib.maintainers; [ ericbmerritt ]; 42 }; 43 }
··· 39 license = stdenv.lib.licenses.gpl3; 40 homepage = "https://github.com/aggelgian/cuter"; 41 maintainers = with stdenv.lib.maintainers; [ ericbmerritt ]; 42 + platforms = with stdenv.lib.platforms; unix; 43 }; 44 }
+1
pkgs/development/tools/flamegraph/default.nix
··· 23 license = licenses.cddl; 24 homepage = http://www.brendangregg.com/flamegraphs.html; 25 description = "Visualization for profiled code"; 26 }; 27 }
··· 23 license = licenses.cddl; 24 homepage = http://www.brendangregg.com/flamegraphs.html; 25 description = "Visualization for profiled code"; 26 + platforms = platforms.unix; 27 }; 28 }
+1
pkgs/development/tools/github/github-release/default.nix
··· 47 license = licenses.mit; 48 homepage = https://github.com/aktau/github-release; 49 maintainers = with maintainers; [ ardumont ]; 50 }; 51 }
··· 47 license = licenses.mit; 48 homepage = https://github.com/aktau/github-release; 49 maintainers = with maintainers; [ ardumont ]; 50 + platforms = with platforms; unix; 51 }; 52 }
+1
pkgs/development/tools/gnulib/default.nix
··· 17 homepage = "http://www.gnu.org/software/gnulib/"; 18 description = "Central location for code to be shared among GNU packages"; 19 license = stdenv.lib.licenses.gpl3Plus; 20 }; 21 }
··· 17 homepage = "http://www.gnu.org/software/gnulib/"; 18 description = "Central location for code to be shared among GNU packages"; 19 license = stdenv.lib.licenses.gpl3Plus; 20 + platforms = stdenv.lib.platforms.unix; 21 }; 22 }
+1
pkgs/development/tools/guile/g-wrap/default.nix
··· 26 homepage = http://www.nongnu.org/g-wrap/; 27 license = stdenv.lib.licenses.lgpl2Plus; 28 maintainers = [ stdenv.lib.maintainers.taktoa ]; 29 }; 30 }
··· 26 homepage = http://www.nongnu.org/g-wrap/; 27 license = stdenv.lib.licenses.lgpl2Plus; 28 maintainers = [ stdenv.lib.maintainers.taktoa ]; 29 + platforms = stdenv.lib.platforms.linux; 30 }; 31 }
+1
pkgs/development/tools/heroku/default.nix
··· 10 description = "Everything you need to get started using Heroku"; 11 maintainers = with maintainers; [ aflatter mirdhyn ]; 12 license = licenses.mit; 13 }; 14 15 src = fetchurl {
··· 10 description = "Everything you need to get started using Heroku"; 11 maintainers = with maintainers; [ aflatter mirdhyn ]; 12 license = licenses.mit; 13 + platforms = with platforms; unix; 14 }; 15 16 src = fetchurl {
+1
pkgs/development/tools/icestorm/default.nix
··· 27 homepage = http://www.clifford.at/icestorm/; 28 license = stdenv.lib.licenses.isc; 29 maintainers = [ stdenv.lib.maintainers.shell ]; 30 }; 31 }
··· 27 homepage = http://www.clifford.at/icestorm/; 28 license = stdenv.lib.licenses.isc; 29 maintainers = [ stdenv.lib.maintainers.shell ]; 30 + platforms = stdenv.lib.platforms.linux; 31 }; 32 }
+4
pkgs/development/tools/literate-programming/noweb/default.nix
··· 22 done 23 ''; 24 patches = [ ./no-FAQ.patch ]; 25 }
··· 22 done 23 ''; 24 patches = [ ./no-FAQ.patch ]; 25 + 26 + meta = { 27 + platforms = stdenv.lib.platforms.linux; 28 + }; 29 }
+1
pkgs/development/tools/literate-programming/nuweb/default.nix
··· 32 homepage = http://nuweb.sourceforge.net; 33 license = licenses.free; 34 maintainers = [ maintainers.AndersonTorres ]; 35 }; 36 } 37 # TODO: nuweb.el Emacs integration
··· 32 homepage = http://nuweb.sourceforge.net; 33 license = licenses.free; 34 maintainers = [ maintainers.AndersonTorres ]; 35 + platforms = platforms.linux; 36 }; 37 } 38 # TODO: nuweb.el Emacs integration
+1
pkgs/development/tools/misc/autoconf-archive/default.nix
··· 15 description = "Archive of autoconf m4 macros"; 16 homepage = http://www.gnu.org/software/autoconf-archive/; 17 license = licenses.gpl3; 18 }; 19 }
··· 15 description = "Archive of autoconf m4 macros"; 16 homepage = http://www.gnu.org/software/autoconf-archive/; 17 license = licenses.gpl3; 18 + platforms = platforms.unix; 19 }; 20 }
+1
pkgs/development/tools/misc/autoconf/2.13.nix
··· 34 ''; 35 36 license = stdenv.lib.licenses.gpl2Plus; 37 }; 38 }
··· 34 ''; 35 36 license = stdenv.lib.licenses.gpl2Plus; 37 + platforms = stdenv.lib.platforms.unix; 38 }; 39 }
+1
pkgs/development/tools/misc/automake/automake-1.10.x.nix
··· 42 license = stdenv.lib.licenses.gpl2Plus; 43 44 maintainers = [ ]; 45 }; 46 }
··· 42 license = stdenv.lib.licenses.gpl2Plus; 43 44 maintainers = [ ]; 45 + platforms = stdenv.lib.platforms.unix; 46 }; 47 }
+1
pkgs/development/tools/misc/automoc4/default.nix
··· 15 description = "KDE Meta Object Compiler"; 16 license = licenses.bsd2; 17 maintainers = [ maintainers.sander maintainers.urkud ]; 18 }; 19 }
··· 15 description = "KDE Meta Object Compiler"; 16 license = licenses.bsd2; 17 maintainers = [ maintainers.sander maintainers.urkud ]; 18 + platforms = platforms.unix; 19 }; 20 }
+1
pkgs/development/tools/misc/ccache/default.nix
··· 63 downloadPage = https://ccache.samba.org/download.html; 64 license = licenses.gpl3Plus; 65 maintainers = with maintainers; [ nckx ]; 66 }; 67 }; 68 in ccache
··· 63 downloadPage = https://ccache.samba.org/download.html; 64 license = licenses.gpl3Plus; 65 maintainers = with maintainers; [ nckx ]; 66 + platforms = with platforms; linux; 67 }; 68 }; 69 in ccache
+7 -6
pkgs/development/tools/misc/checkbashisms/default.nix
··· 10 sha256 = "1vm0yykkg58ja9ianfpm3mgrpah109gj33b41kl0jmmm11zip9jd"; 11 }; 12 13 - meta = { 14 - homepage = http://sourceforge.net/projects/checkbaskisms/; 15 - description = "Check shell scripts for non-portable syntax"; 16 - license = stdenv.lib.licenses.gpl2; 17 - }; 18 - 19 # The link returns directly the script. No need for unpacking 20 unpackPhase = "true"; 21 ··· 29 fixupPhase = '' 30 sed -e "s#/usr/bin/perl#$perl/bin/perl#" -i $out/bin/checkbashisms 31 ''; 32 }
··· 10 sha256 = "1vm0yykkg58ja9ianfpm3mgrpah109gj33b41kl0jmmm11zip9jd"; 11 }; 12 13 # The link returns directly the script. No need for unpacking 14 unpackPhase = "true"; 15 ··· 23 fixupPhase = '' 24 sed -e "s#/usr/bin/perl#$perl/bin/perl#" -i $out/bin/checkbashisms 25 ''; 26 + 27 + meta = { 28 + homepage = http://sourceforge.net/projects/checkbaskisms/; 29 + description = "Check shell scripts for non-portable syntax"; 30 + license = stdenv.lib.licenses.gpl2; 31 + platforms = stdenv.lib.platforms.linux; 32 + }; 33 }
+1
pkgs/development/tools/misc/cproto/default.nix
··· 17 description = "Tool to generate C function prototypes from C source code"; 18 homepage = http://cproto.sourceforge.net/; 19 license = stdenv.lib.licenses.publicDomain; 20 }; 21 }
··· 17 description = "Tool to generate C function prototypes from C source code"; 18 homepage = http://cproto.sourceforge.net/; 19 license = stdenv.lib.licenses.publicDomain; 20 + platforms = stdenv.lib.platforms.linux; 21 }; 22 }
+1
pkgs/development/tools/misc/dfu-programmer/default.nix
··· 19 description = "A Device Firmware Update based USB programmer for Atmel chips with a USB bootloader"; 20 homepage = http://dfu-programmer.sourceforge.net/; 21 maintainers = [ maintainers.the-kenny ]; 22 }; 23 }
··· 19 description = "A Device Firmware Update based USB programmer for Atmel chips with a USB bootloader"; 20 homepage = http://dfu-programmer.sourceforge.net/; 21 maintainers = [ maintainers.the-kenny ]; 22 + platforms = platforms.linux; 23 }; 24 }
+1
pkgs/development/tools/misc/doclifter/default.nix
··· 21 description = "Lift documents in nroff markups to XML-DocBook"; 22 homepage = http://www.catb.org/esr/doclifter; 23 license = "BSD"; 24 }; 25 }
··· 21 description = "Lift documents in nroff markups to XML-DocBook"; 22 homepage = http://www.catb.org/esr/doclifter; 23 license = "BSD"; 24 + platforms = stdenv.lib.platforms.unix; 25 }; 26 }
+1
pkgs/development/tools/misc/editorconfig-core-c/default.nix
··· 29 license = with licenses; [ bsd2 bsd3 ]; 30 version = "0.12.1"; 31 maintainers = [ maintainers.dochang ]; 32 }; 33 34 }
··· 29 license = with licenses; [ bsd2 bsd3 ]; 30 version = "0.12.1"; 31 maintainers = [ maintainers.dochang ]; 32 + platforms = platforms.unix; 33 }; 34 35 }
+1
pkgs/development/tools/misc/eggdbus/default.nix
··· 13 meta = { 14 homepage = http://hal.freedesktop.org/releases/; 15 description = "D-Bus bindings for GObject"; 16 }; 17 }
··· 13 meta = { 14 homepage = http://hal.freedesktop.org/releases/; 15 description = "D-Bus bindings for GObject"; 16 + platforms = stdenv.lib.platforms.linux; 17 }; 18 }
+1
pkgs/development/tools/misc/gnum4/default.nix
··· 40 ''; 41 42 license = stdenv.lib.licenses.gpl3Plus; 43 }; 44 45 }
··· 40 ''; 41 42 license = stdenv.lib.licenses.gpl3Plus; 43 + platforms = stdenv.lib.platforms.unix; 44 }; 45 46 }
+1
pkgs/development/tools/misc/gob2/default.nix
··· 16 description = "Preprocessor for making GObjects with inline C code"; 17 homepage = http://www.jirka.org/gob.html; 18 license = stdenv.lib.licenses.gpl2Plus; 19 }; 20 }
··· 16 description = "Preprocessor for making GObjects with inline C code"; 17 homepage = http://www.jirka.org/gob.html; 18 license = stdenv.lib.licenses.gpl2Plus; 19 + platforms = stdenv.lib.platforms.unix; 20 }; 21 }
+1
pkgs/development/tools/misc/gperf/default.nix
··· 28 license = stdenv.lib.licenses.gpl3Plus; 29 30 homepage = http://www.gnu.org/software/gperf/; 31 }; 32 }
··· 28 license = stdenv.lib.licenses.gpl3Plus; 29 30 homepage = http://www.gnu.org/software/gperf/; 31 + platforms = stdenv.lib.platforms.unix; 32 }; 33 }
+1
pkgs/development/tools/misc/grafana/default.nix
··· 25 license = licenses.asl20; 26 27 maintainers = [ maintainers.offline ]; 28 }; 29 }
··· 25 license = licenses.asl20; 26 27 maintainers = [ maintainers.offline ]; 28 + platforms = stdenv.lib.platforms.unix; 29 }; 30 }
+1
pkgs/development/tools/misc/gtkdialog/default.nix
··· 14 homepage = http://gtkdialog.googlecode.com/; 15 description = "Small utility for fast and easy GUI building from many scripted and compiled languages"; 16 license = stdenv.lib.licenses.gpl2Plus; 17 }; 18 }
··· 14 homepage = http://gtkdialog.googlecode.com/; 15 description = "Small utility for fast and easy GUI building from many scripted and compiled languages"; 16 license = stdenv.lib.licenses.gpl2Plus; 17 + platforms = stdenv.lib.platforms.linux; 18 }; 19 }
+1
pkgs/development/tools/misc/indent/default.nix
··· 12 homepage = https://www.gnu.org/software/indent/; 13 description = "A source code reformatter"; 14 license = stdenv.lib.licenses.gpl3Plus; 15 }; 16 }
··· 12 homepage = https://www.gnu.org/software/indent/; 13 description = "A source code reformatter"; 14 license = stdenv.lib.licenses.gpl3Plus; 15 + platforms = stdenv.lib.platforms.linux; 16 }; 17 }
+1
pkgs/development/tools/misc/jscoverage/default.nix
··· 43 44 homepage = http://siliconforks.com/jscoverage/; 45 license = stdenv.lib.licenses.gpl2; 46 }; 47 }
··· 43 44 homepage = http://siliconforks.com/jscoverage/; 45 license = stdenv.lib.licenses.gpl2; 46 + platforms = stdenv.lib.platforms.linux; 47 }; 48 }
+1
pkgs/development/tools/misc/kibana/default.nix
··· 27 homepage = http://www.elasticsearch.org/overview/kibana; 28 license = licenses.asl20; 29 maintainers = with maintainers; [ offline rickynils ]; 30 }; 31 }
··· 27 homepage = http://www.elasticsearch.org/overview/kibana; 28 license = licenses.asl20; 29 maintainers = with maintainers; [ offline rickynils ]; 30 + platforms = with platforms; unix; 31 }; 32 }
+1
pkgs/development/tools/misc/libtool/default.nix
··· 30 homepage = http://www.gnu.org/software/libtool/; 31 32 license = stdenv.lib.licenses.gpl2Plus; 33 }; 34 }
··· 30 homepage = http://www.gnu.org/software/libtool/; 31 32 license = stdenv.lib.licenses.gpl2Plus; 33 + platforms = stdenv.lib.platforms.unix; 34 }; 35 }
+1
pkgs/development/tools/misc/libtool/libtool2.nix
··· 43 license = stdenv.lib.licenses.gpl2Plus; 44 45 maintainers = [ ]; 46 }; 47 }
··· 43 license = stdenv.lib.licenses.gpl2Plus; 44 45 maintainers = [ ]; 46 + platforms = stdenv.lib.platforms.unix; 47 }; 48 }
+1
pkgs/development/tools/misc/lsof/default.nix
··· 40 from it). 41 ''; 42 maintainers = [ stdenv.lib.maintainers.mornfall ]; 43 }; 44 }
··· 40 from it). 41 ''; 42 maintainers = [ stdenv.lib.maintainers.mornfall ]; 43 + platforms = stdenv.lib.platforms.linux; 44 }; 45 }
+1
pkgs/development/tools/misc/ltrace/default.nix
··· 19 meta = { 20 description = "Library call tracer"; 21 homepage = http://www.ltrace.org/; 22 }; 23 }
··· 19 meta = { 20 description = "Library call tracer"; 21 homepage = http://www.ltrace.org/; 22 + platforms = stdenv.lib.platforms.linux; 23 }; 24 }
+1
pkgs/development/tools/misc/objconv/default.nix
··· 20 homepage = http://www.agner.org/optimize/; 21 license = licenses.gpl2; 22 maintainers = with maintainers; [ vrthra ]; 23 }; 24 25 }
··· 20 homepage = http://www.agner.org/optimize/; 21 license = licenses.gpl2; 22 maintainers = with maintainers; [ vrthra ]; 23 + platforms = with platforms; unix; 24 }; 25 26 }
+1
pkgs/development/tools/misc/pmccabe/default.nix
··· 32 trees or files; and vifn, to invoke vi given a function name rather 33 than a file name. 34 ''; 35 }; 36 }
··· 32 trees or files; and vifn, to invoke vi given a function name rather 33 than a file name. 34 ''; 35 + platforms = stdenv.lib.platforms.linux; 36 }; 37 }
+1
pkgs/development/tools/misc/premake/3.nix
··· 22 homepage = http://industriousone.com/premake; 23 description = "A simple build configuration and project generation tool using lua"; 24 license = stdenv.lib.licenses.bsd3; 25 }; 26 }
··· 22 homepage = http://industriousone.com/premake; 23 description = "A simple build configuration and project generation tool using lua"; 24 license = stdenv.lib.licenses.bsd3; 25 + platforms = stdenv.lib.platforms.unix; 26 }; 27 }
+1
pkgs/development/tools/misc/rman/default.nix
··· 15 meta = { 16 description = "Parse formatted man pages and man page source from most flavors of UNIX and converts them to HTML, ASCII, TkMan, DocBook, and other formats"; 17 license = "artistic"; 18 }; 19 }
··· 15 meta = { 16 description = "Parse formatted man pages and man page source from most flavors of UNIX and converts them to HTML, ASCII, TkMan, DocBook, and other formats"; 17 license = "artistic"; 18 + platforms = stdenv.lib.platforms.linux; 19 }; 20 }
+1
pkgs/development/tools/misc/rolespec/default.nix
··· 43 license = licenses.gpl3; 44 version = "20160105"; 45 maintainers = [ maintainers.dochang ]; 46 }; 47 48 }
··· 43 license = licenses.gpl3; 44 version = "20160105"; 45 maintainers = [ maintainers.dochang ]; 46 + platforms = platforms.unix; 47 }; 48 49 }
+4
pkgs/development/tools/misc/sqitch/default.nix
··· 16 ''; 17 dontStrip = true; 18 postFixup = "wrapProgram $out/bin/sqitch --prefix PERL5LIB : $PERL5LIB"; 19 }
··· 16 ''; 17 dontStrip = true; 18 postFixup = "wrapProgram $out/bin/sqitch --prefix PERL5LIB : $PERL5LIB"; 19 + 20 + meta = { 21 + platforms = stdenv.lib.platforms.unix; 22 + }; 23 }
+2 -2
pkgs/development/tools/misc/strace/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 name = "strace-${version}"; 5 - version = "4.12"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/strace/${name}.tar.xz"; 9 - sha256 = "51144b78cb9ba22211b95a5aafe0af3694c0d575b25975d80ca9dd4dfd7c1e59"; 10 }; 11 12 nativeBuildInputs = [ perl ];
··· 2 3 stdenv.mkDerivation rec { 4 name = "strace-${version}"; 5 + version = "4.13"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/strace/${name}.tar.xz"; 9 + sha256 = "d48f732576c91ece36a5843d63f9be054c40ef59f1e4773986042636861625d7"; 10 }; 11 12 nativeBuildInputs = [ perl ];
+1
pkgs/development/tools/misc/texinfo/4.13a.nix
··· 37 38 homepage = http://www.gnu.org/software/texinfo/; 39 branch = "4.13"; 40 }; 41 }
··· 37 38 homepage = http://www.gnu.org/software/texinfo/; 39 branch = "4.13"; 40 + platforms = stdenv.lib.platforms.unix; 41 }; 42 }
+1
pkgs/development/tools/parsing/byacc/default.nix
··· 12 description = "Berkeley YACC"; 13 homepage = http://dickey.his.com/byacc/byacc.html; 14 license = stdenv.lib.licenses.publicDomain; 15 }; 16 }
··· 12 description = "Berkeley YACC"; 13 homepage = http://dickey.his.com/byacc/byacc.html; 14 license = stdenv.lib.licenses.publicDomain; 15 + platforms = stdenv.lib.platforms.unix; 16 }; 17 }
+1
pkgs/development/tools/parsing/flex/2.5.35.nix
··· 23 branch = "2.5.35"; 24 homepage = http://flex.sourceforge.net/; 25 description = "A fast lexical analyser generator"; 26 }; 27 }
··· 23 branch = "2.5.35"; 24 homepage = http://flex.sourceforge.net/; 25 description = "A fast lexical analyser generator"; 26 + platforms = stdenv.lib.platforms.unix; 27 }; 28 }
+1
pkgs/development/tools/parsing/flex/default.nix
··· 32 meta = { 33 homepage = http://flex.sourceforge.net/; 34 description = "A fast lexical analyser generator"; 35 }; 36 }
··· 32 meta = { 33 homepage = http://flex.sourceforge.net/; 34 description = "A fast lexical analyser generator"; 35 + platforms = stdenv.lib.platforms.unix; 36 }; 37 }
+1
pkgs/development/tools/parsing/jikespg/default.nix
··· 19 meta = { 20 homepage = http://jikes.sourceforge.net/; 21 description = "The Jikes Parser Generator"; 22 }; 23 }
··· 19 meta = { 20 homepage = http://jikes.sourceforge.net/; 21 description = "The Jikes Parser Generator"; 22 + platforms = stdenv.lib.platforms.linux; 23 }; 24 }
+1
pkgs/development/tools/profiling/sysprof/default.nix
··· 23 do not need to be recompiled. In fact they don't even have to 24 be restarted. 25 ''; 26 }; 27 }
··· 23 do not need to be recompiled. In fact they don't even have to 24 be restarted. 25 ''; 26 + platforms = stdenv.lib.platforms.linux; 27 }; 28 }
+1
pkgs/development/tools/pypi2nix/default.nix
··· 81 homepage = https://github.com/garbas/pypi2nix; 82 description = "A tool that generates nix expressions for your python packages, so you don't have to."; 83 maintainers = with stdenv.lib.maintainers; [ garbas ]; 84 }; 85 }
··· 81 homepage = https://github.com/garbas/pypi2nix; 82 description = "A tool that generates nix expressions for your python packages, so you don't have to."; 83 maintainers = with stdenv.lib.maintainers; [ garbas ]; 84 + platforms = with stdenv.lib.platforms; unix; 85 }; 86 }
+1
pkgs/development/tools/rtags/default.nix
··· 25 homepage = https://github.com/andersbakken/rtags; 26 27 license = stdenv.lib.licenses.gpl3; 28 }; 29 }
··· 25 homepage = https://github.com/andersbakken/rtags; 26 27 license = stdenv.lib.licenses.gpl3; 28 + platforms = stdenv.lib.platforms.unix; 29 }; 30 }
+1
pkgs/development/tools/toluapp/default.nix
··· 29 homepage = http://www.codenix.com/~tolua/; 30 license = licenses.mit; 31 maintainers = with maintainers; [ vrthra ]; 32 }; 33 }
··· 29 homepage = http://www.codenix.com/~tolua/; 30 license = licenses.mit; 31 maintainers = with maintainers; [ vrthra ]; 32 + platforms = with platforms; unix; 33 }; 34 }
+1 -1
pkgs/development/web/valum/default.nix
··· 23 meta = with stdenv.lib; { 24 homepage = https://github.com/valum-framework/valum; 25 description = "Web micro-framework written in Vala"; 26 - plaforms = platforms.linux; 27 maintainers = [ maintainers.lethalman ]; 28 }; 29 }
··· 23 meta = with stdenv.lib; { 24 homepage = https://github.com/valum-framework/valum; 25 description = "Web micro-framework written in Vala"; 26 + platforms = platforms.linux; 27 maintainers = [ maintainers.lethalman ]; 28 }; 29 }
+1
pkgs/games/bzflag/default.nix
··· 14 description = "Multiplayer 3D Tank game"; 15 homepage = http://bzflag.org/; 16 license = stdenv.lib.licenses.lgpl21Plus; 17 }; 18 }
··· 14 description = "Multiplayer 3D Tank game"; 15 homepage = http://bzflag.org/; 16 license = stdenv.lib.licenses.lgpl21Plus; 17 + platforms = stdenv.lib.platforms.linux; 18 }; 19 }
+1
pkgs/games/chessdb/default.nix
··· 25 meta = { 26 homepage = http://chessdb.sourceforge.net/; 27 description = "A free chess database"; 28 }; 29 }
··· 25 meta = { 26 homepage = http://chessdb.sourceforge.net/; 27 description = "A free chess database"; 28 + platforms = stdenv.lib.platforms.linux; 29 }; 30 }
+1
pkgs/games/cockatrice/default.nix
··· 20 description = "A cross-platform virtual tabletop for multiplayer card games"; 21 license = stdenv.lib.licenses.gpl2; 22 maintainers = with stdenv.lib.maintainers; [ spencerjanssen ]; 23 }; 24 }
··· 20 description = "A cross-platform virtual tabletop for multiplayer card games"; 21 license = stdenv.lib.licenses.gpl2; 22 maintainers = with stdenv.lib.maintainers; [ spencerjanssen ]; 23 + platforms = with stdenv.lib.platforms; linux; 24 }; 25 }
+1
pkgs/games/commandergenius/default.nix
··· 50 homepage = "https://github.com/gerstrong/Commander-Genius"; 51 maintainers = with stdenv.lib.maintainers; [ hce ]; 52 license = stdenv.lib.licenses.gpl2; 53 }; 54 }
··· 50 homepage = "https://github.com/gerstrong/Commander-Genius"; 51 maintainers = with stdenv.lib.maintainers; [ hce ]; 52 license = stdenv.lib.licenses.gpl2; 53 + platforms = with stdenv.lib.platforms; linux; 54 }; 55 }
+1
pkgs/games/cuyo/default.nix
··· 15 homepage = http://karimmi.de/cuyo; 16 description = "Stacking blocks game, with different rules for each level"; 17 license = stdenv.lib.licenses.gpl2Plus; 18 }; 19 20 }
··· 15 homepage = http://karimmi.de/cuyo; 16 description = "Stacking blocks game, with different rules for each level"; 17 license = stdenv.lib.licenses.gpl2Plus; 18 + platforms = stdenv.lib.platforms.linux; 19 }; 20 21 }
+1
pkgs/games/eboard/default.nix
··· 22 meta = { 23 homepage = http://www.bergo.eng.br/eboard/; 24 description = "Chess interface for Unix-like systems"; 25 }; 26 }
··· 22 meta = { 23 homepage = http://www.bergo.eng.br/eboard/; 24 description = "Chess interface for Unix-like systems"; 25 + platforms = stdenv.lib.platforms.linux; 26 }; 27 }
+1
pkgs/games/eduke32/default.nix
··· 71 license = licenses.gpl2Plus; 72 homepage = http://eduke32.com; 73 maintainers = with maintainers; [ nckx sander ]; 74 }; 75 }
··· 71 license = licenses.gpl2Plus; 72 homepage = http://eduke32.com; 73 maintainers = with maintainers; [ nckx sander ]; 74 + platforms = with platforms; linux; 75 }; 76 }
+1
pkgs/games/extremetuxracer/default.nix
··· 34 license = stdenv.lib.licenses.gpl2Plus; 35 homepage = http://sourceforge.net/projects/extremetuxracer/; 36 maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; 37 }; 38 }
··· 34 license = stdenv.lib.licenses.gpl2Plus; 35 homepage = http://sourceforge.net/projects/extremetuxracer/; 36 maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; 37 + platforms = with stdenv.lib.platforms; linux; 38 }; 39 }
+1
pkgs/games/exult/default.nix
··· 41 homepage = http://exult.sourceforge.net/; 42 description = "A reimplementation of the Ultima VII game engine"; 43 maintainers = [ stdenv.lib.maintainers.eelco ]; 44 }; 45 }
··· 41 homepage = http://exult.sourceforge.net/; 42 description = "A reimplementation of the Ultima VII game engine"; 43 maintainers = [ stdenv.lib.maintainers.eelco ]; 44 + platforms = stdenv.lib.platforms.unix; 45 }; 46 }
+1
pkgs/games/freecell-solver/default.nix
··· 26 homepage = http://fc-solve.shlomifish.org/; 27 license = licenses.mit; 28 maintainers = [ maintainers.AndersonTorres ]; 29 }; 30 }
··· 26 homepage = http://fc-solve.shlomifish.org/; 27 license = licenses.mit; 28 maintainers = [ maintainers.AndersonTorres ]; 29 + platforms = stdenv.lib.platforms.unix; 30 }; 31 }
+1
pkgs/games/fsg/default.nix
··· 47 meta = { 48 description = "Cellular automata engine tuned towards the likes of Falling Sand"; 49 maintainers = [stdenv.lib.maintainers.raskin]; 50 }; 51 }
··· 47 meta = { 48 description = "Cellular automata engine tuned towards the likes of Falling Sand"; 49 maintainers = [stdenv.lib.maintainers.raskin]; 50 + platforms = stdenv.lib.platforms.linux; 51 }; 52 }
+32
pkgs/games/gambatte/default.nix
···
··· 1 + { stdenv, fetchFromGitHub, scons, qt4 }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "gambatte-${version}"; 5 + version = "2016-05-03"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "sinamas"; 9 + repo = "gambatte"; 10 + rev = "f8a810b103c4549f66035dd2be4279c8f0d95e77"; 11 + sha256 = "1arv4zkh3fhrghsykl4blazc9diw09m44pyff1059z5b98smxy3v"; 12 + }; 13 + 14 + buildInputs = [ scons qt4 ]; 15 + 16 + buildPhase = '' 17 + ./build_qt.sh 18 + ''; 19 + 20 + installPhase = '' 21 + mkdir -p $out/bin 22 + cp gambatte_qt/bin/gambatte_qt $out/bin/ 23 + ''; 24 + 25 + meta = with stdenv.lib; { 26 + description = "Portable, open-source Game Boy Color emulator"; 27 + homepage = https://github.com/sinamas/gambatte; 28 + license = licenses.gpl2; 29 + maintainers = [ maintainers.dezgeg ]; 30 + platforms = platforms.linux; 31 + }; 32 + }
+1
pkgs/games/gav/default.nix
··· 21 description = "Remake of AV Arcade Volleyball"; 22 homepage = http://gav.sourceforge.net/; 23 license = stdenv.lib.licenses.gpl2Plus; 24 }; 25 }
··· 21 description = "Remake of AV Arcade Volleyball"; 22 homepage = http://gav.sourceforge.net/; 23 license = stdenv.lib.licenses.gpl2Plus; 24 + platforms = stdenv.lib.platforms.linux; 25 }; 26 }
+1
pkgs/games/gnugo/default.nix
··· 19 description = "GNU Go - A computer go player"; 20 homepage = "http://http://www.gnu.org/software/gnugo/"; 21 license = stdenv.lib.licenses.gpl3; 22 }; 23 24 }
··· 19 description = "GNU Go - A computer go player"; 20 homepage = "http://http://www.gnu.org/software/gnugo/"; 21 license = stdenv.lib.licenses.gpl3; 22 + platforms = stdenv.lib.platforms.unix; 23 }; 24 25 }
+1
pkgs/games/icbm3d/default.nix
··· 18 homepage = http://www.newbreedsoftware.com/icbm3d/; 19 description = "3D vector-based clone of the atari game Missile Command"; 20 license = stdenv.lib.licenses.gpl2Plus; 21 }; 22 }
··· 18 homepage = http://www.newbreedsoftware.com/icbm3d/; 19 description = "3D vector-based clone of the atari game Missile Command"; 20 license = stdenv.lib.licenses.gpl2Plus; 21 + platforms = stdenv.lib.platforms.linux; 22 }; 23 }
+1
pkgs/games/kobodeluxe/default.nix
··· 19 homepage = http://olofson.net/kobodl/; 20 description = "Enhanced version of Akira Higuchi's game XKobo for Un*x systems with X11"; 21 license = stdenv.lib.licenses.gpl2Plus; 22 }; 23 }
··· 19 homepage = http://olofson.net/kobodl/; 20 description = "Enhanced version of Akira Higuchi's game XKobo for Un*x systems with X11"; 21 license = stdenv.lib.licenses.gpl2Plus; 22 + platforms = stdenv.lib.platforms.linux; 23 }; 24 }
+1
pkgs/games/macopix/default.nix
··· 14 description = "Mascot Constructive Pilot for X"; 15 homepage = http://rosegray.sakura.ne.jp/macopix/index-e.html; 16 license = stdenv.lib.licenses.gpl2Plus; 17 }; 18 }
··· 14 description = "Mascot Constructive Pilot for X"; 15 homepage = http://rosegray.sakura.ne.jp/macopix/index-e.html; 16 license = stdenv.lib.licenses.gpl2Plus; 17 + platforms = stdenv.lib.platforms.linux; 18 }; 19 }
+1
pkgs/games/mars/default.nix
··· 29 description = "A game about fighting with ships in a 2D space setting"; 30 license = licenses.gpl3Plus; 31 maintainers = [ maintainers.astsmtl ]; 32 }; 33 }
··· 29 description = "A game about fighting with ships in a 2D space setting"; 30 license = licenses.gpl3Plus; 31 maintainers = [ maintainers.astsmtl ]; 32 + platforms = platforms.linux; 33 }; 34 }
+1
pkgs/games/njam/default.nix
··· 20 homepage = http://trackballs.sourceforge.net/; 21 description = "Cross-platform pacman-like game"; 22 license = stdenv.lib.licenses.gpl2Plus; 23 }; 24 }
··· 20 homepage = http://trackballs.sourceforge.net/; 21 description = "Cross-platform pacman-like game"; 22 license = stdenv.lib.licenses.gpl2Plus; 23 + platforms = stdenv.lib.platforms.linux; 24 }; 25 }
+1
pkgs/games/openlierox/default.nix
··· 35 homepage = http://openlierox.net; 36 description = "Real-time game with Worms-like shooting"; 37 license = stdenv.lib.licenses.lgpl2Plus; 38 }; 39 }
··· 35 homepage = http://openlierox.net; 36 description = "Real-time game with Worms-like shooting"; 37 license = stdenv.lib.licenses.lgpl2Plus; 38 + platforms = stdenv.lib.platforms.linux; 39 }; 40 }
+1
pkgs/games/pong3d/default.nix
··· 18 homepage = http://www.newbreedsoftware.com/3dpong/; 19 description = "One or two player 3d sports game based on Pong from Atari"; 20 license = stdenv.lib.licenses.gpl2Plus; 21 }; 22 }
··· 18 homepage = http://www.newbreedsoftware.com/3dpong/; 19 description = "One or two player 3d sports game based on Pong from Atari"; 20 license = stdenv.lib.licenses.gpl2Plus; 21 + platforms = stdenv.lib.platforms.linux; 22 }; 23 }
+1
pkgs/games/racer/default.nix
··· 26 description = "Car racing game"; 27 homepage = http://hippo.nipax.cz/download.en.php; 28 license = stdenv.lib.licenses.gpl2Plus; 29 }; 30 }
··· 26 description = "Car racing game"; 27 homepage = http://hippo.nipax.cz/download.en.php; 28 license = stdenv.lib.licenses.gpl2Plus; 29 + platforms = stdenv.lib.platforms.linux; 30 }; 31 }
+1
pkgs/games/rili/default.nix
··· 24 to win. 25 ''; 26 maintainers = with stdenv.lib.maintainers; [ jcumming ]; 27 }; 28 }
··· 24 to win. 25 ''; 26 maintainers = with stdenv.lib.maintainers; [ jcumming ]; 27 + platforms = with stdenv.lib.platforms; linux; 28 }; 29 }
+1
pkgs/games/scummvm/default.nix
··· 25 meta = { 26 description = "Program to run certain classic graphical point-and-click adventure games (such as Monkey Island)"; 27 homepage = http://www.scummvm.org/; 28 }; 29 } 30
··· 25 meta = { 26 description = "Program to run certain classic graphical point-and-click adventure games (such as Monkey Island)"; 27 homepage = http://www.scummvm.org/; 28 + platforms = stdenv.lib.platforms.linux; 29 }; 30 } 31
+1
pkgs/games/super-tux-kart/default.nix
··· 40 homepage = http://supertuxkart.sourceforge.net/; 41 license = stdenv.lib.licenses.gpl2Plus; 42 maintainers = with stdenv.lib.maintainers; [ c0dehero fuuzetsu ]; 43 }; 44 }
··· 40 homepage = http://supertuxkart.sourceforge.net/; 41 license = stdenv.lib.licenses.gpl2Plus; 42 maintainers = with stdenv.lib.maintainers; [ c0dehero fuuzetsu ]; 43 + platforms = with stdenv.lib.platforms; linux; 44 }; 45 }
+1
pkgs/games/super-tux/default.nix
··· 24 homepage = http://supertux.github.io/; 25 license = licenses.gpl2; 26 maintainers = with maintainers; [ pSub ]; 27 }; 28 }
··· 24 homepage = http://supertux.github.io/; 25 license = licenses.gpl2; 26 maintainers = with maintainers; [ pSub ]; 27 + platforms = with platforms; linux; 28 }; 29 }
+1
pkgs/games/teetertorture/default.nix
··· 27 homepage = http://www.newbreedsoftware.com/teetertorture/; 28 description = "Simple shooting game with your cannon is sitting atop a teeter totter"; 29 license = stdenv.lib.licenses.gpl2Plus; 30 }; 31 }
··· 27 homepage = http://www.newbreedsoftware.com/teetertorture/; 28 description = "Simple shooting game with your cannon is sitting atop a teeter totter"; 29 license = stdenv.lib.licenses.gpl2Plus; 30 + platforms = stdenv.lib.platforms.linux; 31 }; 32 }
+1
pkgs/games/tome4/default.nix
··· 26 description = "Tales of Maj'eyal (rogue-like game)"; 27 maintainers = [ stdenv.lib.maintainers.chattered ]; 28 license = stdenv.lib.licenses.gpl3; 29 }; 30 }
··· 26 description = "Tales of Maj'eyal (rogue-like game)"; 27 maintainers = [ stdenv.lib.maintainers.chattered ]; 28 license = stdenv.lib.licenses.gpl3; 29 + platforms = stdenv.lib.platforms.linux; 30 }; 31 }
+1
pkgs/games/trackballs/default.nix
··· 29 meta = { 30 homepage = http://trackballs.sourceforge.net/; 31 description = "3D Marble Madness clone"; 32 }; 33 }
··· 29 meta = { 30 homepage = http://trackballs.sourceforge.net/; 31 description = "3D Marble Madness clone"; 32 + platforms = stdenv.lib.platforms.linux; 33 }; 34 }
+1
pkgs/games/uqm/default.nix
··· 104 homepage = http://sc2.sourceforge.net/; 105 license = stdenv.lib.licenses.gpl2; 106 maintainers = with maintainers; [ jcumming aszlig ]; 107 }; 108 }
··· 104 homepage = http://sc2.sourceforge.net/; 105 license = stdenv.lib.licenses.gpl2; 106 maintainers = with maintainers; [ jcumming aszlig ]; 107 + platforms = with platforms; linux; 108 }; 109 }
+1
pkgs/games/vectoroids/default.nix
··· 18 homepage = http://www.newbreedsoftware.com/vectoroids/; 19 description = "Clone of the classic arcade game Asteroids by Atari"; 20 license = stdenv.lib.licenses.gpl2Plus; 21 }; 22 }
··· 18 homepage = http://www.newbreedsoftware.com/vectoroids/; 19 description = "Clone of the classic arcade game Asteroids by Atari"; 20 license = stdenv.lib.licenses.gpl2Plus; 21 + platforms = stdenv.lib.platforms.linux; 22 }; 23 }
+1
pkgs/misc/base16/default.nix
··· 56 homepage = "https://github.com/chriskempson/base16"; 57 license = licenses.mit; 58 maintainers = with maintainers; [ garbas ]; 59 }; 60 61 }
··· 56 homepage = "https://github.com/chriskempson/base16"; 57 license = licenses.mit; 58 maintainers = with maintainers; [ garbas ]; 59 + platforms = with platforms; unix; 60 }; 61 62 }
+1
pkgs/misc/cups/drivers/cups-bjnp/default.nix
··· 21 Canon printer. The design is based on reverse engineering of the protocol. 22 ''; 23 homepage = http://cups-bjnp.sourceforge.net; 24 }; 25 }
··· 21 Canon printer. The design is based on reverse engineering of the protocol. 22 ''; 23 homepage = http://cups-bjnp.sourceforge.net; 24 + platforms = stdenv.lib.platforms.linux; 25 }; 26 }
+28 -49
pkgs/misc/drivers/foo2zjs/default.nix
··· 1 - x@{builderDefsPackage 2 - , foomatic_filters, bc, unzip, ghostscript, systemd, vim 3 - , ...}: 4 - builderDefsPackage 5 - (a : 6 - let 7 - helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++ 8 - []; 9 10 - buildInputs = map (n: builtins.getAttr n x) 11 - (builtins.attrNames (builtins.removeAttrs x helperArgNames)); 12 - sourceInfo = rec { 13 - baseName="foo2zjs"; 14 - version="20110210"; 15 - name="${baseName}-${version}"; 16 - url="http://www.loegria.net/mirrors/foo2zjs/${name}.tar.gz"; 17 - hash="0vss8gdbbgxr694xw48rys2qflbnb4sp4gdb1v6z4m9ab97hs5yk"; 18 - }; 19 - in 20 - rec { 21 - src = a.fetchurl { 22 - url = sourceInfo.url; 23 - sha256 = sourceInfo.hash; 24 }; 25 26 - inherit (sourceInfo) name version; 27 - inherit buildInputs; 28 - 29 - phaseNames = ["doPatch" "fixHardcodedPaths" "doMakeDirs" "doMakeInstall" "deployGetWeb"]; 30 31 patches = [ ./no-hardcode-fw.diff ]; 32 33 makeFlags = [ 34 - ''PREFIX=$out'' 35 - ''APPL=$out/share/applications'' 36 - ''PIXMAPS=$out/share/pixmaps'' 37 - ''UDEVBIN=$out/bin'' 38 - ''UDEVDIR=$out/etc/udev/rules.d'' 39 - ''UDEVD=${systemd.udev.bin}/sbin/udevd'' 40 - ''LIBUDEVDIR=$out/lib/udev/rules.d'' 41 - ''USBDIR=$out/etc/hotplug/usb'' 42 - ''FOODB=$out/share/foomatic/db/source'' 43 - ''MODEL=$out/share/cups/model'' 44 ]; 45 46 installFlags = [ "install-hotplug" ]; 47 48 - fixHardcodedPaths = a.fullDepEntry '' 49 touch all-test 50 sed -e "/BASENAME=/iPATH=$out/bin:$PATH" -i *-wrapper *-wrapper.in 51 sed -e "s@PREFIX=/usr@PREFIX=$out@" -i *-wrapper{,.in} ··· 55 sed -e "s@/etc/hotplug/usb@$out&@" -i *rules* 56 sed -e "s@/usr@$out@g" -i hplj1020.desktop 57 sed -e "/PRINTERID=/s@=.*@=$out/bin/usb_printerid@" -i hplj1000 58 - '' ["doPatch" "minInit"]; 59 60 - doMakeDirs = a.fullDepEntry '' 61 mkdir -pv $out/{etc/udev/rules.d,lib/udev/rules.d,etc/hotplug/usb} 62 mkdir -pv $out/share/foomatic/db/source/{opt,printer,driver} 63 mkdir -pv $out/share/cups/model 64 mkdir -pv $out/share/{applications,pixmaps} 65 - '' ["minInit"]; 66 67 - deployGetWeb = a.fullDepEntry '' 68 mkdir -pv "$out/bin" 69 cp -v getweb arm2hpdl "$out/bin" 70 - '' ["minInit"]; 71 - 72 - meta = { 73 description = "ZjStream printer drivers"; 74 - maintainers = with a.lib.maintainers; 75 [ 76 raskin urkud 77 ]; 78 - platforms = with a.lib.platforms; 79 - linux; 80 - license = a.lib.licenses.gpl2Plus; 81 }; 82 - }) x
··· 1 + { stdenv, fetchurl, foomatic_filters, bc, unzip, ghostscript, systemd, vim }: 2 3 + stdenv.mkDerivation rec { 4 + name = "foo2zjs-20110210"; 5 + 6 + src = fetchurl { 7 + url = "http://www.loegria.net/mirrors/foo2zjs/${name}.tar.gz"; 8 + sha256 = "0vss8gdbbgxr694xw48rys2qflbnb4sp4gdb1v6z4m9ab97hs5yk"; 9 }; 10 11 + buildInputs = [ foomatic_filters bc unzip ghostscript systemd vim ]; 12 13 patches = [ ./no-hardcode-fw.diff ]; 14 15 makeFlags = [ 16 + "PREFIX=$(out)" 17 + "APPL=$(out)/share/applications" 18 + "PIXMAPS=$(out)/share/pixmaps" 19 + "UDEVBIN=$(out)/bin" 20 + "UDEVDIR=$(out)/etc/udev/rules.d" 21 + "UDEVD=${systemd.udev.bin}/sbin/udevd" 22 + "LIBUDEVDIR=$(out)/lib/udev/rules.d" 23 + "USBDIR=$(out)/etc/hotplug/usb" 24 + "FOODB=$(out)/share/foomatic/db/source" 25 + "MODEL=$(out)/share/cups/model" 26 ]; 27 28 installFlags = [ "install-hotplug" ]; 29 30 + postPatch = '' 31 touch all-test 32 sed -e "/BASENAME=/iPATH=$out/bin:$PATH" -i *-wrapper *-wrapper.in 33 sed -e "s@PREFIX=/usr@PREFIX=$out@" -i *-wrapper{,.in} ··· 37 sed -e "s@/etc/hotplug/usb@$out&@" -i *rules* 38 sed -e "s@/usr@$out@g" -i hplj1020.desktop 39 sed -e "/PRINTERID=/s@=.*@=$out/bin/usb_printerid@" -i hplj1000 40 + ''; 41 42 + preInstall = '' 43 mkdir -pv $out/{etc/udev/rules.d,lib/udev/rules.d,etc/hotplug/usb} 44 mkdir -pv $out/share/foomatic/db/source/{opt,printer,driver} 45 mkdir -pv $out/share/cups/model 46 mkdir -pv $out/share/{applications,pixmaps} 47 48 mkdir -pv "$out/bin" 49 cp -v getweb arm2hpdl "$out/bin" 50 + ''; 51 + 52 + meta = with stdenv.lib; { 53 description = "ZjStream printer drivers"; 54 + maintainers = with maintainers; 55 [ 56 raskin urkud 57 ]; 58 + platforms = platforms.linux; 59 + license = licenses.gpl2Plus; 60 }; 61 + }
+1
pkgs/misc/drivers/gutenprint/bin.nix
··· 63 64 meta = { 65 description = "Some additional CUPS drivers including Canon drivers"; 66 }; 67 }
··· 63 64 meta = { 65 description = "Some additional CUPS drivers including Canon drivers"; 66 + platforms = stdenv.lib.platforms.linux; 67 }; 68 }
+1
pkgs/misc/drivers/moltengamepad/default.nix
··· 31 description = "Flexible Linux input device translator, geared for gamepads"; 32 license = licenses.mit; 33 maintainers = [ maintainers.ebzzry ]; 34 }; 35 36 }
··· 31 description = "Flexible Linux input device translator, geared for gamepads"; 32 license = licenses.mit; 33 maintainers = [ maintainers.ebzzry ]; 34 + platforms = platforms.linux; 35 }; 36 37 }
+1
pkgs/misc/drivers/xboxdrv/default.nix
··· 22 description = "Xbox/Xbox360 (and more) gamepad driver for Linux that works in userspace"; 23 license = licenses.gpl3Plus; 24 maintainers = [ maintainers.fuuzetsu ]; 25 }; 26 27 }
··· 22 description = "Xbox/Xbox360 (and more) gamepad driver for Linux that works in userspace"; 23 license = licenses.gpl3Plus; 24 maintainers = [ maintainers.fuuzetsu ]; 25 + platforms = platforms.linux; 26 }; 27 28 }
+3 -2
pkgs/misc/emulators/atari++/default.nix
··· 23 (Linux, Solaris, Irix). 24 ''; 25 maintainers = [ maintainers.AndersonTorres ]; 26 - license = licenses.gpl2Plus; 27 - }; 28 }
··· 23 (Linux, Solaris, Irix). 24 ''; 25 maintainers = [ maintainers.AndersonTorres ]; 26 + license = licenses.gpl2Plus; 27 + platforms = stdenv.lib.platforms.linux; 28 + }; 29 }
+3 -2
pkgs/misc/emulators/atari800/default.nix
··· 27 other systems supported by the SDL library. 28 ''; 29 maintainers = [ maintainers.AndersonTorres ]; 30 - license = licenses.gpl2Plus; 31 - }; 32 }
··· 27 other systems supported by the SDL library. 28 ''; 29 maintainers = [ maintainers.AndersonTorres ]; 30 + license = licenses.gpl2Plus; 31 + platforms = stdenv.lib.platforms.linux; 32 + }; 33 }
+1
pkgs/misc/emulators/dlx/default.nix
··· 24 homepage = "http://www.davidviner.com/dlx.php"; 25 description = "DLX Simulator"; 26 license = stdenv.lib.licenses.gpl2; 27 }; 28 }
··· 24 homepage = "http://www.davidviner.com/dlx.php"; 25 description = "DLX Simulator"; 26 license = stdenv.lib.licenses.gpl2; 27 + platforms = stdenv.lib.platforms.linux; 28 }; 29 }
+1
pkgs/misc/emulators/dosbox/default.nix
··· 39 meta = { 40 homepage = http://www.dosbox.com/; 41 description = "A DOS emulator"; 42 }; 43 }
··· 39 meta = { 40 homepage = http://www.dosbox.com/; 41 description = "A DOS emulator"; 42 + platforms = stdenv.lib.platforms.unix; 43 }; 44 }
+1
pkgs/misc/emulators/emulationstation/default.nix
··· 24 homepage = "http://emulationstation.org"; 25 maintainers = [ stdenv.lib.maintainers.edwtjo ]; 26 license = stdenv.lib.licenses.mit; 27 }; 28 }
··· 24 homepage = "http://emulationstation.org"; 25 maintainers = [ stdenv.lib.maintainers.edwtjo ]; 26 license = stdenv.lib.licenses.mit; 27 + platforms = stdenv.lib.platforms.linux; 28 }; 29 }
+1
pkgs/misc/emulators/fakenes/default.nix
··· 24 homepage = http://fakenes.sourceforge.net/; 25 license = stdenv.lib.licenses.gpl2Plus; 26 description = "Portable Open Source NES Emulator"; 27 }; 28 }
··· 24 homepage = http://fakenes.sourceforge.net/; 25 license = stdenv.lib.licenses.gpl2Plus; 26 description = "Portable Open Source NES Emulator"; 27 + platforms = stdenv.lib.platforms.linux; 28 }; 29 }
+1
pkgs/misc/emulators/fceux/default.nix
··· 30 description = "A Nintendo Entertainment System (NES) Emulator"; 31 license = stdenv.lib.licenses.gpl2; 32 homepage = http://www.fceux.com/; 33 }; 34 }
··· 30 description = "A Nintendo Entertainment System (NES) Emulator"; 31 license = stdenv.lib.licenses.gpl2; 32 homepage = http://www.fceux.com/; 33 + platforms = stdenv.lib.platforms.linux; 34 }; 35 }
+1
pkgs/misc/emulators/fs-uae/default.nix
··· 31 license = licenses.gpl2Plus; 32 homepage = http://fs-uae.net; 33 maintainers = [ maintainers.AndersonTorres ]; 34 }; 35 } 36 # TODO: testing and Python GUI support
··· 31 license = licenses.gpl2Plus; 32 homepage = http://fs-uae.net; 33 maintainers = [ maintainers.AndersonTorres ]; 34 + platforms = stdenv.lib.platforms.linux; 35 }; 36 } 37 # TODO: testing and Python GUI support
+1
pkgs/misc/emulators/mgba/default.nix
··· 37 ''; 38 license = licenses.mpl20; 39 maintainers = with maintainers; [ MP2E AndersonTorres ]; 40 }; 41 }
··· 37 ''; 38 license = licenses.mpl20; 39 maintainers = with maintainers; [ MP2E AndersonTorres ]; 40 + platforms = with platforms; linux; 41 }; 42 }
+1
pkgs/misc/emulators/mupen64plus/default.nix
··· 31 license = stdenv.lib.licenses.gpl2Plus; 32 homepage = http://code.google.com/p/mupen64plus; 33 maintainers = [ stdenv.lib.maintainers.sander ]; 34 }; 35 }
··· 31 license = stdenv.lib.licenses.gpl2Plus; 32 homepage = http://code.google.com/p/mupen64plus; 33 maintainers = [ stdenv.lib.maintainers.sander ]; 34 + platforms = stdenv.lib.platforms.linux; 35 }; 36 }
+1 -1
pkgs/misc/emulators/retroarch/wrapper.nix
··· 30 preferLocalBuild = true; 31 32 meta = with retroarch.meta; { 33 - inherit license homepage; 34 description = description 35 + " (with cores: " 36 + lib.concatStrings (lib.intersperse ", " (map (x: ""+x.name) cores))
··· 30 preferLocalBuild = true; 31 32 meta = with retroarch.meta; { 33 + inherit license homepage platforms maintainers; 34 description = description 35 + " (with cores: " 36 + lib.concatStrings (lib.intersperse ", " (map (x: ""+x.name) cores))
+1
pkgs/misc/emulators/retrofe/default.nix
··· 73 homepage = http://retrofe.com; 74 license = licenses.gpl3Plus; 75 maintainers = with maintainers; [ hrdinka ]; 76 }; 77 }
··· 73 homepage = http://retrofe.com; 74 license = licenses.gpl3Plus; 75 maintainers = with maintainers; [ hrdinka ]; 76 + platforms = with platforms; linux; 77 }; 78 }
+7 -1
pkgs/misc/emulators/snes9x-gtk/default.nix
··· 22 23 meta = { 24 description = "A portable, freeware Super Nintendo Entertainment System (SNES) emulator"; 25 - longDescription = "Snes9x is a portable, freeware Super Nintendo Entertainment System (SNES) emulator. It basically allows you to play most games designed for the SNES and Super Famicom Nintendo game systems on your PC or Workstation; which includes some real gems that were only ever released in Japan."; 26 license = stdenv.lib.licenses.lgpl2; 27 maintainers = [ stdenv.lib.maintainers.qknight ]; 28 homepage = http://www.snes9x.com/; 29 }; 30 }
··· 22 23 meta = { 24 description = "A portable, freeware Super Nintendo Entertainment System (SNES) emulator"; 25 + longDescription = '' 26 + Snes9x is a portable, freeware Super Nintendo Entertainment System (SNES) 27 + emulator. It basically allows you to play most games designed for the SNES 28 + and Super Famicom Nintendo game systems on your PC or Workstation; which 29 + includes some real gems that were only ever released in Japan. 30 + ''; 31 license = stdenv.lib.licenses.lgpl2; 32 maintainers = [ stdenv.lib.maintainers.qknight ]; 33 homepage = http://www.snes9x.com/; 34 + platforms = stdenv.lib.platforms.linux; 35 }; 36 }
+1
pkgs/misc/emulators/uae/default.nix
··· 19 license = stdenv.lib.licenses.gpl2Plus; 20 homepage = http://web.archive.org/web/20130901222855/http://www.amigaemulator.org/; 21 maintainers = [ stdenv.lib.maintainers.sander ]; 22 }; 23 }
··· 19 license = stdenv.lib.licenses.gpl2Plus; 20 homepage = http://web.archive.org/web/20130901222855/http://www.amigaemulator.org/; 21 maintainers = [ stdenv.lib.maintainers.sander ]; 22 + platforms = stdenv.lib.platforms.linux; 23 }; 24 }
+1
pkgs/misc/emulators/vbam/default.nix
··· 55 license = stdenv.lib.licenses.gpl2; 56 maintainers = [ stdenv.lib.maintainers.lassulus ]; 57 homepage = http://vba-m.com/; 58 }; 59 }
··· 55 license = stdenv.lib.licenses.gpl2; 56 maintainers = [ stdenv.lib.maintainers.lassulus ]; 57 homepage = http://vba-m.com/; 58 + platforms = stdenv.lib.platforms.linux; 59 }; 60 }
+1
pkgs/misc/emulators/vice/default.nix
··· 40 homepage = http://www.viceteam.org; 41 license = stdenv.lib.licenses.gpl2Plus; 42 maintainers = [ stdenv.lib.maintainers.sander ]; 43 }; 44 }
··· 40 homepage = http://www.viceteam.org; 41 license = stdenv.lib.licenses.gpl2Plus; 42 maintainers = [ stdenv.lib.maintainers.sander ]; 43 + platforms = stdenv.lib.platforms.linux; 44 }; 45 }
+1
pkgs/misc/emulators/wine/winetricks.nix
··· 25 license = stdenv.lib.licenses.lgpl21; 26 homepage = http://code.google.com/p/winetricks/; 27 maintainers = with stdenv.lib.maintainers; [ the-kenny ]; 28 }; 29 }
··· 25 license = stdenv.lib.licenses.lgpl21; 26 homepage = http://code.google.com/p/winetricks/; 27 maintainers = with stdenv.lib.maintainers; [ the-kenny ]; 28 + platforms = with stdenv.lib.platforms; linux; 29 }; 30 }
+1
pkgs/misc/emulators/zsnes/default.nix
··· 70 license = stdenv.lib.licenses.gpl2Plus; 71 maintainers = [ stdenv.lib.maintainers.sander ]; 72 homepage = http://www.zsnes.com; 73 }; 74 }
··· 70 license = stdenv.lib.licenses.gpl2Plus; 71 maintainers = [ stdenv.lib.maintainers.sander ]; 72 homepage = http://www.zsnes.com; 73 + platforms = stdenv.lib.platforms.unix; 74 }; 75 }
+1
pkgs/misc/gnuk/generic.nix
··· 48 description = "An implementation of USB cryptographic token for gpg"; 49 license = licenses.gpl3; 50 maintainers = with maintainers; [ wkennington ]; 51 }; 52 }
··· 48 description = "An implementation of USB cryptographic token for gpg"; 49 license = licenses.gpl3; 50 maintainers = with maintainers; [ wkennington ]; 51 + platforms = with platforms; linux; 52 }; 53 }
+4
pkgs/misc/phabricator/default.nix
··· 25 cp -R ${srcArcanist} $out/arcanist 26 cp -R ${srcPhabricator} $out/phabricator 27 ''; 28 }
··· 25 cp -R ${srcArcanist} $out/arcanist 26 cp -R ${srcPhabricator} $out/phabricator 27 ''; 28 + 29 + meta = { 30 + platforms = stdenv.lib.platforms.unix; 31 + }; 32 }
+1
pkgs/misc/screensavers/rss-glx/default.nix
··· 21 original collection, plus a few others. 22 ''; 23 license = stdenv.lib.licenses.gpl2; 24 }; 25 }
··· 21 original collection, plus a few others. 22 ''; 23 license = stdenv.lib.licenses.gpl2; 24 + platforms = stdenv.lib.platforms.linux; 25 }; 26 }
+1
pkgs/misc/talkfilters/default.nix
··· 18 homepage = "http://http://www.hyperrealm.com/${name}"; 19 license = stdenv.lib.licenses.gpl2; 20 maintainers = with stdenv.lib.maintainers; [ ikervagyok ]; 21 }; 22 } 23
··· 18 homepage = "http://http://www.hyperrealm.com/${name}"; 19 license = stdenv.lib.licenses.gpl2; 20 maintainers = with stdenv.lib.maintainers; [ ikervagyok ]; 21 + platforms = with stdenv.lib.platforms; unix; 22 }; 23 } 24
+1
pkgs/misc/themes/albatross/default.nix
··· 22 description = "A desktop Suite for Xfce"; 23 homepage = http://shimmerproject.org/our-projects/albatross/; 24 license = stdenv.lib.licenses.gpl2; 25 }; 26 }
··· 22 description = "A desktop Suite for Xfce"; 23 homepage = http://shimmerproject.org/our-projects/albatross/; 24 license = stdenv.lib.licenses.gpl2; 25 + platforms = stdenv.lib.platforms.unix; 26 }; 27 }
+1
pkgs/misc/themes/blackbird/default.nix
··· 21 homepage = http://github.com/shimmerproject/Blackbird; 22 license = with stdenv.lib.licenses; [ gpl2Plus cc-by-nc-sa-30 ]; 23 maintainers = [ stdenv.lib.maintainers.romildo ]; 24 }; 25 }
··· 21 homepage = http://github.com/shimmerproject/Blackbird; 22 license = with stdenv.lib.licenses; [ gpl2Plus cc-by-nc-sa-30 ]; 23 maintainers = [ stdenv.lib.maintainers.romildo ]; 24 + platforms = stdenv.lib.platforms.linux; 25 }; 26 }
+29
pkgs/misc/themes/flat-plat/default.nix
···
··· 1 + { stdenv, fetchFromGitHub }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "flat-plat-gtk-theme-eba3be5"; 5 + 6 + src = fetchFromGitHub { 7 + owner = "nana-4"; 8 + repo = "Flat-Plat"; 9 + rev = "eba3be5eafd1140e1edb8b02411edb2f6c78b0ca"; 10 + sha256 = "0vfdnrxspdwg4jr025dwjmdcrqnblhlw666v5b7qhkxymibp5j7h"; 11 + }; 12 + 13 + dontBuild = true; 14 + 15 + installPhase = '' 16 + mkdir -p $out/share/themes 17 + rm .gitignore COPYING README.md 18 + cp -r . $out/share/themes 19 + ''; 20 + 21 + meta = with stdenv.lib; { 22 + description = "A Material Design-like flat theme for GTK3, GTK2, and GNOME Shell"; 23 + homepage = https://github.com/nana-4/Flat-Plat; 24 + licence = licenses.gpl2; 25 + maintainers = [ maintainers.mounium ]; 26 + platforms = platforms.all; 27 + }; 28 + } 29 +
+1
pkgs/misc/themes/greybird/default.nix
··· 29 homepage = http://shimmerproject.org/our-projects/greybird/; 30 license = with stdenv.lib.licenses; [ gpl2Plus cc-by-nc-sa-30 ]; 31 maintainers = [ stdenv.lib.maintainers.romildo ]; 32 }; 33 }
··· 29 homepage = http://shimmerproject.org/our-projects/greybird/; 30 license = with stdenv.lib.licenses; [ gpl2Plus cc-by-nc-sa-30 ]; 31 maintainers = [ stdenv.lib.maintainers.romildo ]; 32 + platforms = stdenv.lib.platforms.linux; 33 }; 34 }
+1
pkgs/misc/themes/orion/default.nix
··· 20 meta = { 21 homepage = https://github.com/shimmerproject/Orion; 22 license = stdenv.lib.licenses.gpl3Plus; 23 }; 24 }
··· 20 meta = { 21 homepage = https://github.com/shimmerproject/Orion; 22 license = stdenv.lib.licenses.gpl3Plus; 23 + platforms = stdenv.lib.platforms.linux; 24 }; 25 }
+1
pkgs/misc/urbit/default.nix
··· 39 homepage = http://urbit.org; 40 license = licenses.mit; 41 maintainers = with maintainers; [ mudri ]; 42 }; 43 }
··· 39 homepage = http://urbit.org; 40 license = licenses.mit; 41 maintainers = with maintainers; [ mudri ]; 42 + platforms = with platforms; linux; 43 }; 44 }
+4
pkgs/os-specific/linux/915resolution/default.nix
··· 8 }; 9 buildPhase = "rm *.o 915resolution; make"; 10 installPhase = "mkdir -p $out/sbin; cp 915resolution $out/sbin/"; 11 }
··· 8 }; 9 buildPhase = "rm *.o 915resolution; make"; 10 installPhase = "mkdir -p $out/sbin; cp 915resolution $out/sbin/"; 11 + 12 + meta = { 13 + platforms = stdenv.lib.platforms.linux; 14 + }; 15 }
+1
pkgs/os-specific/linux/acpitool/default.nix
··· 46 homepage = http://freeunix.dyndns.org:8000/site2/acpitool.shtml; 47 license = stdenv.lib.licenses.gpl2Plus; 48 maintainers = [ stdenv.lib.maintainers.guibert ]; 49 }; 50 }
··· 46 homepage = http://freeunix.dyndns.org:8000/site2/acpitool.shtml; 47 license = stdenv.lib.licenses.gpl2Plus; 48 maintainers = [ stdenv.lib.maintainers.guibert ]; 49 + platforms = stdenv.lib.platforms.unix; 50 }; 51 }
+1
pkgs/os-specific/linux/alsa-firmware/default.nix
··· 31 homepage = http://www.alsa-project.org/main/index.php/Main_Page; 32 description = "Soundcard firmwares from the alsa project"; 33 license = stdenv.lib.licenses.gpl2Plus; 34 }; 35 }
··· 31 homepage = http://www.alsa-project.org/main/index.php/Main_Page; 32 description = "Soundcard firmwares from the alsa project"; 33 license = stdenv.lib.licenses.gpl2Plus; 34 + platforms = stdenv.lib.platforms.linux; 35 }; 36 }
+1
pkgs/os-specific/linux/autofs/default.nix
··· 37 homepage = http://www.linux-consulting.com/Amd_AutoFS/autofs.html; 38 license = stdenv.lib.licenses.gpl2; 39 executables = [ "automount" ]; 40 }; 41 }
··· 37 homepage = http://www.linux-consulting.com/Amd_AutoFS/autofs.html; 38 license = stdenv.lib.licenses.gpl2; 39 executables = [ "automount" ]; 40 + platforms = stdenv.lib.platforms.linux; 41 }; 42 }
+1
pkgs/os-specific/linux/blktrace/default.nix
··· 19 meta = { 20 description = "Block layer IO tracing mechanism"; 21 license = stdenv.lib.licenses.gpl2; 22 }; 23 }
··· 19 meta = { 20 description = "Block layer IO tracing mechanism"; 21 license = stdenv.lib.licenses.gpl2; 22 + platforms = stdenv.lib.platforms.linux; 23 }; 24 }
+1
pkgs/os-specific/linux/bluez/default.nix
··· 49 meta = { 50 homepage = http://www.bluez.org/; 51 description = "Bluetooth support for Linux"; 52 }; 53 }
··· 49 meta = { 50 homepage = http://www.bluez.org/; 51 description = "Bluetooth support for Linux"; 52 + platforms = stdenv.lib.platforms.linux; 53 }; 54 }
+4
pkgs/os-specific/linux/cramfsswap/default.nix
··· 9 }; 10 11 buildInputs = [zlib]; 12 }
··· 9 }; 10 11 buildInputs = [zlib]; 12 + 13 + meta = { 14 + platforms = stdenv.lib.platforms.linux; 15 + }; 16 }
+1
pkgs/os-specific/linux/firmware/b43-firmware-cutter/default.nix
··· 16 description = "Firmware extractor for cards supported by the b43 kernel module"; 17 homepage = http://wireless.kernel.org/en/users/Drivers/b43; 18 license = stdenv.lib.licenses.free; 19 }; 20 }
··· 16 description = "Firmware extractor for cards supported by the b43 kernel module"; 17 homepage = http://wireless.kernel.org/en/users/Drivers/b43; 18 license = stdenv.lib.licenses.free; 19 + platforms = stdenv.lib.platforms.linux; 20 }; 21 }
+1
pkgs/os-specific/linux/firmware/intel2200BGFirmware/default.nix
··· 30 homepage = http://ipw2200.sourceforge.net/firmware.php; 31 license = stdenv.lib.licenses.unfreeRedistributableFirmware; 32 maintainers = with maintainers; [ lukasepple ]; 33 }; 34 }
··· 30 homepage = http://ipw2200.sourceforge.net/firmware.php; 31 license = stdenv.lib.licenses.unfreeRedistributableFirmware; 32 maintainers = with maintainers; [ lukasepple ]; 33 + platforms = with platforms; linux; 34 }; 35 }
+1
pkgs/os-specific/linux/firmware/rt5677/default.nix
··· 19 description = "Firmware for Realtek rt5677 device"; 20 license = licenses.unfreeRedistributableFirmware; 21 maintainers = [ maintainers.zohl ]; 22 }; 23 }
··· 19 description = "Firmware for Realtek rt5677 device"; 20 license = licenses.unfreeRedistributableFirmware; 21 maintainers = [ maintainers.zohl ]; 22 + platforms = platforms.linux; 23 }; 24 }
+1
pkgs/os-specific/linux/firmware/rtl8723bs-firmware/default.nix
··· 17 homepage = https://github.com/hadess/rtl8723bs; 18 license = licenses.unfreeRedistributableFirmware; 19 maintainers = with maintainers; [ elitak ]; 20 }; 21 }
··· 17 homepage = https://github.com/hadess/rtl8723bs; 18 license = licenses.unfreeRedistributableFirmware; 19 maintainers = with maintainers; [ elitak ]; 20 + platforms = with platforms; linux; 21 }; 22 }
+1
pkgs/os-specific/linux/firmware/zd1211/default.nix
··· 22 description = "Firmware for the ZyDAS ZD1211(b) 802.11a/b/g USB WLAN chip"; 23 homepage = http://sourceforge.net/projects/zd1211/; 24 license = "GPL"; 25 }; 26 }
··· 22 description = "Firmware for the ZyDAS ZD1211(b) 802.11a/b/g USB WLAN chip"; 23 homepage = http://sourceforge.net/projects/zd1211/; 24 license = "GPL"; 25 + platforms = stdenv.lib.platforms.linux; 26 }; 27 }
+1
pkgs/os-specific/linux/fxload/default.nix
··· 30 meta = { 31 homepage = http://linux-hotplug.sourceforge.net/?selected=usb; 32 description = "Tool to upload firmware to Cypress EZ-USB microcontrollers"; 33 }; 34 }
··· 30 meta = { 31 homepage = http://linux-hotplug.sourceforge.net/?selected=usb; 32 description = "Tool to upload firmware to Cypress EZ-USB microcontrollers"; 33 + platforms = stdenv.lib.platforms.linux; 34 }; 35 }
+1
pkgs/os-specific/linux/gogoclient/default.nix
··· 38 homepage = http://gogonet.gogo6.com; 39 description = "Client to connect to the Freenet6 IPv6 tunnel broker service"; 40 maintainers = [stdenv.lib.maintainers.bluescreen303]; 41 }; 42 }
··· 38 homepage = http://gogonet.gogo6.com; 39 description = "Client to connect to the Freenet6 IPv6 tunnel broker service"; 40 maintainers = [stdenv.lib.maintainers.bluescreen303]; 41 + platforms = stdenv.lib.platforms.linux; 42 }; 43 }
+1
pkgs/os-specific/linux/google-authenticator/default.nix
··· 24 homepage = https://code.google.com/p/google-authenticator/; 25 description = "Two-step verification, with pam module"; 26 license = stdenv.lib.licenses.asl20; 27 }; 28 }
··· 24 homepage = https://code.google.com/p/google-authenticator/; 25 description = "Two-step verification, with pam module"; 26 license = stdenv.lib.licenses.asl20; 27 + platforms = stdenv.lib.platforms.linux; 28 }; 29 }
+1
pkgs/os-specific/linux/hibernate/default.nix
··· 40 41 license = stdenv.lib.licenses.gpl2Plus; 42 homepage = http://www.tuxonice.net/; 43 }; 44 }
··· 40 41 license = stdenv.lib.licenses.gpl2Plus; 42 homepage = http://www.tuxonice.net/; 43 + platforms = stdenv.lib.platforms.linux; 44 }; 45 }
+1
pkgs/os-specific/linux/i7z/default.nix
··· 31 repositories.git = https://github.com/ajaiantilal/i7z.git; 32 license = stdenv.lib.licenses.gpl2; 33 maintainers = [ stdenv.lib.maintainers.bluescreen303 ]; 34 }; 35 }
··· 31 repositories.git = https://github.com/ajaiantilal/i7z.git; 32 license = stdenv.lib.licenses.gpl2; 33 maintainers = [ stdenv.lib.maintainers.bluescreen303 ]; 34 + platforms = stdenv.lib.platforms.linux; 35 }; 36 }
+1
pkgs/os-specific/linux/i810switch/default.nix
··· 21 description = "A utility for switching between the LCD and external VGA display on Intel graphics cards"; 22 homepage = "http://www16.plala.or.jp/mano-a-mano/i810switch.html"; 23 license = stdenv.lib.licenses.gpl2; 24 }; 25 }
··· 21 description = "A utility for switching between the LCD and external VGA display on Intel graphics cards"; 22 homepage = "http://www16.plala.or.jp/mano-a-mano/i810switch.html"; 23 license = stdenv.lib.licenses.gpl2; 24 + platforms = stdenv.lib.platforms.linux; 25 }; 26 }
+1
pkgs/os-specific/linux/jujuutils/default.nix
··· 14 homepage = "http://code.google.com/p/jujuutils/"; 15 description = "Utilities around FireWire devices connected to a Linux computer"; 16 license = stdenv.lib.licenses.gpl2; 17 }; 18 }
··· 14 homepage = "http://code.google.com/p/jujuutils/"; 15 description = "Utilities around FireWire devices connected to a Linux computer"; 16 license = stdenv.lib.licenses.gpl2; 17 + platforms = stdenv.lib.platforms.linux; 18 }; 19 }
+4
pkgs/os-specific/linux/klibc/default.nix
··· 46 ln -sv $file $out/lib/klibc/include 47 done 48 ''; 49 }
··· 46 ln -sv $file $out/lib/klibc/include 47 done 48 ''; 49 + 50 + meta = { 51 + platforms = stdenv.lib.platforms.linux; 52 + }; 53 }
+4
pkgs/os-specific/linux/klibc/shrunk.nix
··· 21 done 22 ''; # */ 23 allowedReferences = ["out"]; 24 }
··· 21 done 22 ''; # */ 23 allowedReferences = ["out"]; 24 + 25 + meta = { 26 + platforms = stdenv.lib.platforms.linux; 27 + }; 28 }
+1
pkgs/os-specific/linux/kmod-blacklist-ubuntu/default.nix
··· 28 meta = { 29 homepage = http://packages.ubuntu.com/source/saucy/kmod; 30 description = "Linux kernel module blacklists from Ubuntu"; 31 }; 32 }
··· 28 meta = { 29 homepage = http://packages.ubuntu.com/source/saucy/kmod; 30 description = "Linux kernel module blacklists from Ubuntu"; 31 + platforms = stdenv.lib.platforms.linux; 32 }; 33 }
+1
pkgs/os-specific/linux/kmod-debian-aliases/default.nix
··· 18 homepage = https://packages.debian.org/source/sid/kmod; 19 description = "Linux configuration file for modprobe"; 20 maintainers = with lib.maintainers; [ mathnerd314 ]; 21 }; 22 }
··· 18 homepage = https://packages.debian.org/source/sid/kmod; 19 description = "Linux configuration file for modprobe"; 20 maintainers = with lib.maintainers; [ mathnerd314 ]; 21 + platforms = with lib.platforms; linux; 22 }; 23 }
+4
pkgs/os-specific/linux/libnscd/default.nix
··· 7 url = http://ftp.suse.com/pub/people/kukuk/libnscd/libnscd-2.0.2.tar.bz2; 8 sha256 = "0nxhwy42x44jlpdb5xq1prbvfjmds4hplmwv3687z0c4r9rn506l"; 9 }; 10 }
··· 7 url = http://ftp.suse.com/pub/people/kukuk/libnscd/libnscd-2.0.2.tar.bz2; 8 sha256 = "0nxhwy42x44jlpdb5xq1prbvfjmds4hplmwv3687z0c4r9rn506l"; 9 }; 10 + 11 + meta = { 12 + platforms = stdenv.lib.platforms.linux; 13 + }; 14 }
+4
pkgs/os-specific/linux/libvolume_id/default.nix
··· 17 rm $out/lib/libvolume_id.so.0 18 cp -f libvolume_id.so.0 $out/lib/ 19 "; 20 }
··· 17 rm $out/lib/libvolume_id.so.0 18 cp -f libvolume_id.so.0 $out/lib/ 19 "; 20 + 21 + meta = { 22 + platforms = stdenv.lib.platforms.linux; 23 + }; 24 }
+1
pkgs/os-specific/linux/lm-sensors/default.nix
··· 21 meta = { 22 homepage = http://www.lm-sensors.org/; 23 description = "Tools for reading hardware sensors"; 24 }; 25 }
··· 21 meta = { 22 homepage = http://www.lm-sensors.org/; 23 description = "Tools for reading hardware sensors"; 24 + platforms = stdenv.lib.platforms.linux; 25 }; 26 }
+4
pkgs/os-specific/linux/lsscsi/default.nix
··· 13 preConfigure = '' 14 substituteInPlace Makefile.in --replace /usr "$out" 15 ''; 16 }
··· 13 preConfigure = '' 14 substituteInPlace Makefile.in --replace /usr "$out" 15 ''; 16 + 17 + meta = { 18 + platforms = stdenv.lib.platforms.linux; 19 + }; 20 }
+1
pkgs/os-specific/linux/mdadm/default.nix
··· 37 meta = { 38 description = "Programs for managing RAID arrays under Linux"; 39 homepage = http://neil.brown.name/blog/mdadm; 40 }; 41 }
··· 37 meta = { 38 description = "Programs for managing RAID arrays under Linux"; 39 homepage = http://neil.brown.name/blog/mdadm; 40 + platforms = stdenv.lib.platforms.linux; 41 }; 42 }
+4
pkgs/os-specific/linux/nss_ldap/default.nix
··· 28 ''; 29 30 buildInputs = [ openldap perl ]; 31 }
··· 28 ''; 29 30 buildInputs = [ openldap perl ]; 31 + 32 + meta = { 33 + platforms = stdenv.lib.platforms.linux; 34 + }; 35 }
+1 -1
pkgs/os-specific/linux/nvidia-x11/default.nix
··· 53 [ gtk atk pango glib gdk_pixbuf cairo ] ); 54 programPath = makeLibraryPath [ xorg.libXv ]; 55 56 - patches = if versionAtLeast kernel.version "4.7" then [ ./365.35-kernel-4.7.patch ] else []; 57 58 buildInputs = [ perl nukeReferences ]; 59
··· 53 [ gtk atk pango glib gdk_pixbuf cairo ] ); 54 programPath = makeLibraryPath [ xorg.libXv ]; 55 56 + patches = if (!libsOnly) && (versionAtLeast kernel.dev.version "4.7") then [ ./365.35-kernel-4.7.patch ] else []; 57 58 buildInputs = [ perl nukeReferences ]; 59
+1
pkgs/os-specific/linux/open-isns/default.nix
··· 21 description = "iSNS server and client for Linux"; 22 license = stdenv.lib.licenses.lgpl21; 23 homepage = https://github.com/gonzoleeman/open-isns; 24 }; 25 }
··· 21 description = "iSNS server and client for Linux"; 22 license = stdenv.lib.licenses.lgpl21; 23 homepage = https://github.com/gonzoleeman/open-isns; 24 + platforms = stdenv.lib.platforms.linux; 25 }; 26 }
+4 -1
pkgs/os-specific/linux/opengl/xorg-sys/default.nix
··· 13 builder = ./builder.sh; 14 neededLibs = map (p: p.out) 15 [xorg.libXxf86vm xorg.libXext expat libdrm stdenv.cc.cc]; 16 } 17 -
··· 13 builder = ./builder.sh; 14 neededLibs = map (p: p.out) 15 [xorg.libXxf86vm xorg.libXext expat libdrm stdenv.cc.cc]; 16 + 17 + meta = { 18 + platforms = stdenv.lib.platforms.linux; 19 + }; 20 }
+1
pkgs/os-specific/linux/otpw/default.nix
··· 28 homepage = http://www.cl.cam.ac.uk/~mgk25/otpw.html; 29 description = "A one-time password login package"; 30 license = stdenv.lib.licenses.gpl2Plus; 31 }; 32 }
··· 28 homepage = http://www.cl.cam.ac.uk/~mgk25/otpw.html; 29 description = "A one-time password login package"; 30 license = stdenv.lib.licenses.gpl2Plus; 31 + platforms = stdenv.lib.platforms.linux; 32 }; 33 }
+1
pkgs/os-specific/linux/pam_ccreds/default.nix
··· 15 meta = { 16 homepage = "http://www.padl.com/OSS/pam_ccreds.html"; 17 description = "PAM module to locally authenticate using an enterprise identity when the network is unavailable"; 18 }; 19 }
··· 15 meta = { 16 homepage = "http://www.padl.com/OSS/pam_ccreds.html"; 17 description = "PAM module to locally authenticate using an enterprise identity when the network is unavailable"; 18 + platforms = stdenv.lib.platforms.linux; 19 }; 20 }
+1
pkgs/os-specific/linux/pam_usb/default.nix
··· 44 homepage = http://pamusb.org/; 45 description = "Authentication using USB Flash Drives"; 46 license = stdenv.lib.licenses.gpl2; 47 }; 48 }
··· 44 homepage = http://pamusb.org/; 45 description = "Authentication using USB Flash Drives"; 46 license = stdenv.lib.licenses.gpl2; 47 + platforms = stdenv.lib.platforms.linux; 48 }; 49 }
+1
pkgs/os-specific/linux/pcmciautils/default.nix
··· 51 hotpluggable bus system. 52 "; 53 license = stdenv.lib.licenses.gpl2; 54 }; 55 }
··· 51 hotpluggable bus system. 52 "; 53 license = stdenv.lib.licenses.gpl2; 54 + platforms = stdenv.lib.platforms.linux; 55 }; 56 }
+1
pkgs/os-specific/linux/sdparm/default.nix
··· 14 description = "A utility to access SCSI device parameters"; 15 license = licenses.bsd3; 16 maintainers = with maintainers; [ nckx ]; 17 }; 18 }
··· 14 description = "A utility to access SCSI device parameters"; 15 license = licenses.bsd3; 16 maintainers = with maintainers; [ nckx ]; 17 + platforms = with platforms; linux; 18 }; 19 }
+1
pkgs/os-specific/linux/shadow/default.nix
··· 53 meta = { 54 homepage = http://pkg-shadow.alioth.debian.org/; 55 description = "Suite containing authentication-related tools such as passwd and su"; 56 }; 57 58 passthru = {
··· 53 meta = { 54 homepage = http://pkg-shadow.alioth.debian.org/; 55 description = "Suite containing authentication-related tools such as passwd and su"; 56 + platforms = stdenv.lib.platforms.linux; 57 }; 58 59 passthru = {
+1
pkgs/os-specific/linux/sysfsutils/default.nix
··· 17 device tree. 18 ''; 19 license = with stdenv.lib.licenses; [ gpl2 lgpl21 ]; 20 }; 21 }
··· 17 device tree. 18 ''; 19 license = with stdenv.lib.licenses; [ gpl2 lgpl21 ]; 20 + platforms = stdenv.lib.platforms.linux; 21 }; 22 }
+4 -1
pkgs/os-specific/linux/systemd/libudev.nix
··· 15 --replace "${systemd}" "$out" 16 sed "/^includedir=/cincludedir=$dev/include" -i "$dev"/lib/pkgconfig/*.pc 17 ''; 18 } 19 -
··· 15 --replace "${systemd}" "$out" 16 sed "/^includedir=/cincludedir=$dev/include" -i "$dev"/lib/pkgconfig/*.pc 17 ''; 18 + 19 + meta = { 20 + platforms = stdenv.lib.platforms.linux; 21 + }; 22 }
+1
pkgs/os-specific/linux/tunctl/default.nix
··· 17 homepage = http://tunctl.sourceforge.net/; 18 description = "Utility to set up and maintain TUN/TAP network interfaces"; 19 license = stdenv.lib.licenses.gpl2; 20 }; 21 }
··· 17 homepage = http://tunctl.sourceforge.net/; 18 description = "Utility to set up and maintain TUN/TAP network interfaces"; 19 license = stdenv.lib.licenses.gpl2; 20 + platforms = stdenv.lib.platforms.linux; 21 }; 22 }
+1
pkgs/os-specific/linux/uclibc/default.nix
··· 105 homepage = http://www.uclibc.org/; 106 description = "A small implementation of the C library"; 107 license = stdenv.lib.licenses.lgpl2; 108 }; 109 }
··· 105 homepage = http://www.uclibc.org/; 106 description = "A small implementation of the C library"; 107 license = stdenv.lib.licenses.lgpl2; 108 + platforms = stdenv.lib.platforms.linux; 109 }; 110 }
+1
pkgs/os-specific/linux/upstart/default.nix
··· 38 meta = { 39 homepage = "http://upstart.ubuntu.com/"; 40 description = "An event-based replacement for the /sbin/init daemon"; 41 }; 42 }
··· 38 meta = { 39 homepage = "http://upstart.ubuntu.com/"; 40 description = "An event-based replacement for the /sbin/init daemon"; 41 + platforms = stdenv.lib.platforms.linux; 42 }; 43 }
+4
pkgs/os-specific/linux/wireless-tools/default.nix
··· 11 preBuild = " 12 makeFlagsArray=(PREFIX=$out) 13 "; 14 }
··· 11 preBuild = " 12 makeFlagsArray=(PREFIX=$out) 13 "; 14 + 15 + meta = { 16 + platforms = stdenv.lib.platforms.linux; 17 + }; 18 }
+1
pkgs/os-specific/linux/xf86-input-mtrack/default.nix
··· 39 description = "An Xorg driver for multitouch trackpads"; 40 41 license = stdenv.lib.licenses.gpl2; 42 }; 43 }
··· 39 description = "An Xorg driver for multitouch trackpads"; 40 41 license = stdenv.lib.licenses.gpl2; 42 + platforms = stdenv.lib.platforms.linux; 43 }; 44 }
+1
pkgs/servers/computing/storm/default.nix
··· 61 description = "Distributed realtime computation system"; 62 license = licenses.asl20; 63 maintainers = with maintainers; [ edwtjo vizanto ]; 64 }; 65 }
··· 61 description = "Distributed realtime computation system"; 62 license = licenses.asl20; 63 maintainers = with maintainers; [ edwtjo vizanto ]; 64 + platforms = with platforms; unix; 65 }; 66 }
+1
pkgs/servers/dict/dictd-db.nix
··· 24 [doInstall doForceShare doPropagate]); 25 meta = { 26 description = "${name} dictionary for dictd"; 27 }; 28 }; 29 # Probably a bug in some FreeDict release files, but easier to trivially
··· 24 [doInstall doForceShare doPropagate]); 25 meta = { 26 description = "${name} dictionary for dictd"; 27 + platforms = stdenv.lib.platforms.linux; 28 }; 29 }; 30 # Probably a bug in some FreeDict release files, but easier to trivially
+1
pkgs/servers/elasticmq/default.nix
··· 35 Default.scala included in the distribution as a template. 36 ''; 37 license = stdenv.lib.licenses.asl20; 38 }; 39 }
··· 35 Default.scala included in the distribution as a template. 36 ''; 37 license = stdenv.lib.licenses.asl20; 38 + platforms = stdenv.lib.platforms.unix; 39 }; 40 }
+1
pkgs/servers/fcgiwrap/default.nix
··· 22 homepage = https://nginx.localdomain.pl/wiki/FcgiWrap; 23 description = "Simple server for running CGI applications over FastCGI"; 24 maintainers = with maintainers; [ lethalman ]; 25 }; 26 }
··· 22 homepage = https://nginx.localdomain.pl/wiki/FcgiWrap; 23 description = "Simple server for running CGI applications over FastCGI"; 24 maintainers = with maintainers; [ lethalman ]; 25 + platforms = with platforms; linux; 26 }; 27 }
+4
pkgs/servers/fingerd/bsd-fingerd/default.nix
··· 17 preBuild = "cd fingerd"; 18 19 preInstall = '' mkdir -p $out/man/man8 $out/sbin ''; 20 }
··· 17 preBuild = "cd fingerd"; 18 19 preInstall = '' mkdir -p $out/man/man8 $out/sbin ''; 20 + 21 + meta = { 22 + platforms = stdenv.lib.platforms.linux; 23 + }; 24 }
+1
pkgs/servers/freeradius/default.nix
··· 79 description = "A modular, high performance free RADIUS suite"; 80 license = stdenv.lib.licenses.gpl2; 81 maintainers = with maintainers; [ sheenobu ]; 82 }; 83 84 }
··· 79 description = "A modular, high performance free RADIUS suite"; 80 license = stdenv.lib.licenses.gpl2; 81 maintainers = with maintainers; [ sheenobu ]; 82 + platforms = with platforms; linux; 83 }; 84 85 }
+1
pkgs/servers/ftp/pure-ftpd/default.nix
··· 13 homepage = https://www.pureftpd.org; 14 license = licenses.isc; # with some parts covered by BSD3(?) 15 maintainers = [ maintainers.lethalman ]; 16 }; 17 18 }
··· 13 homepage = https://www.pureftpd.org; 14 license = licenses.isc; # with some parts covered by BSD3(?) 15 maintainers = [ maintainers.lethalman ]; 16 + platforms = platforms.linux; 17 }; 18 19 }
+4
pkgs/servers/ftp/vsftpd/default.nix
··· 43 mkdir -pv $out/etc/xinetd.d 44 install -v -m 644 xinetd.d/vsftpd $out/etc/xinetd.d/vsftpd 45 ''; 46 }
··· 43 mkdir -pv $out/etc/xinetd.d 44 install -v -m 644 xinetd.d/vsftpd $out/etc/xinetd.d/vsftpd 45 ''; 46 + 47 + meta = { 48 + platforms = stdenv.lib.platforms.linux; 49 + }; 50 }
+1
pkgs/servers/http/apache-modules/mod_python/default.nix
··· 28 meta = { 29 homepage = http://modpython.org/; 30 description = "An Apache module that embeds the Python interpreter within the server"; 31 }; 32 }
··· 28 meta = { 29 homepage = http://modpython.org/; 30 description = "An Apache module that embeds the Python interpreter within the server"; 31 + platforms = stdenv.lib.platforms.unix; 32 }; 33 }
+4
pkgs/servers/http/apache-modules/tomcat-connectors/default.nix
··· 18 ''; 19 20 buildInputs = [ apacheHttpd jdk ]; 21 }
··· 18 ''; 19 20 buildInputs = [ apacheHttpd jdk ]; 21 + 22 + meta = { 23 + platforms = stdenv.lib.platforms.unix; 24 + }; 25 }
+1 -1
pkgs/servers/http/couchdb/default.nix
··· 45 description = "A database that uses JSON for documents, JavaScript for MapReduce queries, and regular HTTP for an API"; 46 homepage = "http://couchdb.apache.org"; 47 license = licenses.asl20; 48 - platform = platforms.all; 49 maintainers = with maintainers; [ garbas ]; 50 }; 51 }
··· 45 description = "A database that uses JSON for documents, JavaScript for MapReduce queries, and regular HTTP for an API"; 46 homepage = "http://couchdb.apache.org"; 47 license = licenses.asl20; 48 + platforms = platforms.all; 49 maintainers = with maintainers; [ garbas ]; 50 }; 51 }
+1
pkgs/servers/http/jboss/default.nix
··· 21 description = "Open Source J2EE application server"; 22 license = licenses.lgpl21; 23 maintainers = [ maintainers.sander ]; 24 }; 25 }
··· 21 description = "Open Source J2EE application server"; 22 license = licenses.lgpl21; 23 maintainers = [ maintainers.sander ]; 24 + platforms = platforms.unix; 25 }; 26 }
+4
pkgs/servers/http/jboss/jdbc/mysql/default.nix
··· 6 builder = ./builder.sh; 7 8 inherit mysql_jdbc; 9 }
··· 6 builder = ./builder.sh; 7 8 inherit mysql_jdbc; 9 + 10 + meta = { 11 + platforms = stdenv.lib.platforms.unix; 12 + }; 13 }
+1
pkgs/servers/http/spawn-fcgi/default.nix
··· 20 description = "Provides an interface to external programs that support the FastCGI interface"; 21 license = licenses.bsd3; 22 maintainers = with maintainers; [ cstrahan ]; 23 }; 24 }
··· 20 description = "Provides an interface to external programs that support the FastCGI interface"; 21 license = licenses.bsd3; 22 maintainers = with maintainers; [ cstrahan ]; 23 + platforms = with platforms; unix; 24 }; 25 }
+1
pkgs/servers/http/thttpd/default.nix
··· 23 description = "Tiny/turbo/throttling HTTP server"; 24 homepage = "http://www.acme.com/software/thttpd/"; 25 license = stdenv.lib.licenses.bsd2; 26 }; 27 }
··· 23 description = "Tiny/turbo/throttling HTTP server"; 24 homepage = "http://www.acme.com/software/thttpd/"; 25 license = stdenv.lib.licenses.bsd2; 26 + platforms = stdenv.lib.platforms.linux; 27 }; 28 }
+1
pkgs/servers/http/tomcat/axis2/default.nix
··· 14 15 meta = { 16 description = "Web Services / SOAP / WSDL engine, the successor to the widely used Apache Axis SOAP stack"; 17 }; 18 }
··· 14 15 meta = { 16 description = "Web Services / SOAP / WSDL engine, the successor to the widely used Apache Axis SOAP stack"; 17 + platforms = stdenv.lib.platforms.unix; 18 }; 19 }
+4
pkgs/servers/http/tomcat/jdbc/mysql/default.nix
··· 6 buildInputs = [ mysql_jdbc ]; 7 8 inherit mysql_jdbc; 9 }
··· 6 buildInputs = [ mysql_jdbc ]; 7 8 inherit mysql_jdbc; 9 + 10 + meta = { 11 + platforms = stdenv.lib.platforms.unix; 12 + }; 13 }
+1
pkgs/servers/icecast/default.nix
··· 29 homepage = http://www.icecast.org; 30 license = stdenv.lib.licenses.gpl2; 31 maintainers = with stdenv.lib.maintainers; [ jcumming ]; 32 }; 33 } 34
··· 29 homepage = http://www.icecast.org; 30 license = stdenv.lib.licenses.gpl2; 31 maintainers = with stdenv.lib.maintainers; [ jcumming ]; 32 + platforms = with stdenv.lib.platforms; unix; 33 }; 34 } 35
+1
pkgs/servers/irc/ircd-hybrid/default.nix
··· 17 18 meta = { 19 description = "An IPv6-capable IRC server"; 20 }; 21 }
··· 17 18 meta = { 19 description = "An IPv6-capable IRC server"; 20 + platforms = stdenv.lib.platforms.unix; 21 }; 22 }
+1
pkgs/servers/limesurvey/default.nix
··· 37 license = licenses.gpl2; 38 homepage = https://www.limesurvey.org; 39 maintainers = with maintainers; [offline]; 40 }; 41 }
··· 37 license = licenses.gpl2; 38 homepage = https://www.limesurvey.org; 39 maintainers = with maintainers; [offline]; 40 + platforms = with platforms; unix; 41 }; 42 }
+1
pkgs/servers/mail/archiveopteryx/default.nix
··· 30 description = "An advanced PostgreSQL-based IMAP/POP server"; 31 license = licenses.postgresql; 32 maintainers = [ maintainers.phunehehe ]; 33 }; 34 }
··· 30 description = "An advanced PostgreSQL-based IMAP/POP server"; 31 license = licenses.postgresql; 32 maintainers = [ maintainers.phunehehe ]; 33 + platforms = platforms.linux; 34 }; 35 }
+1 -1
pkgs/servers/mail/dovecot/default.nix
··· 70 homepage = "http://dovecot.org/"; 71 description = "Open source IMAP and POP3 email server written with security primarily in mind"; 72 maintainers = with stdenv.lib.maintainers; [viric peti rickynils]; 73 - hydraPlatforms = stdenv.lib.platforms.linux; 74 }; 75 }
··· 70 homepage = "http://dovecot.org/"; 71 description = "Open source IMAP and POP3 email server written with security primarily in mind"; 72 maintainers = with stdenv.lib.maintainers; [viric peti rickynils]; 73 + platforms = stdenv.lib.platforms.linux; 74 }; 75 }
+1
pkgs/servers/mail/popa3d/default.nix
··· 23 meta = { 24 homepage = "http://www.openwall.com/popa3d/"; 25 description = "Tiny POP3 daemon with security as the primary goal"; 26 }; 27 }
··· 23 meta = { 24 homepage = "http://www.openwall.com/popa3d/"; 25 description = "Tiny POP3 daemon with security as the primary goal"; 26 + platforms = stdenv.lib.platforms.linux; 27 }; 28 }
+2 -1
pkgs/servers/mail/postfix/pfixtools.nix
··· 44 description = "A collection of postfix-related tools"; 45 license = with lib.licenses; [ bsd3 ]; 46 homepage = https://github.com/Fruneau/pfixtools; 47 }; 48 - }
··· 44 description = "A collection of postfix-related tools"; 45 license = with lib.licenses; [ bsd3 ]; 46 homepage = https://github.com/Fruneau/pfixtools; 47 + platforms = stdenv.lib.platforms.linux; 48 }; 49 + }
+1
pkgs/servers/mail/rmilter/default.nix
··· 28 postfix or sendmail 29 ''; 30 maintainers = with maintainers; [ avnik fpletz ]; 31 }; 32 }
··· 28 postfix or sendmail 29 ''; 30 maintainers = with maintainers; [ avnik fpletz ]; 31 + platforms = with platforms; linux; 32 }; 33 }
+1
pkgs/servers/mail/rspamd/default.nix
··· 35 license = licenses.asl20; 36 description = "Advanced spam filtering system"; 37 maintainers = with maintainers; [ avnik fpletz ]; 38 }; 39 }
··· 35 license = licenses.asl20; 36 description = "Advanced spam filtering system"; 37 maintainers = with maintainers; [ avnik fpletz ]; 38 + platforms = with platforms; linux; 39 }; 40 }
+1
pkgs/servers/misc/subsonic/default.nix
··· 29 description = "Personal media streamer"; 30 license = stdenv.lib.licenses.gpl3; 31 maintainers = with stdenv.lib.maintainers; [ telotortium ]; 32 }; 33 34 phases = ["unpackPhase" "installPhase"];
··· 29 description = "Personal media streamer"; 30 license = stdenv.lib.licenses.gpl3; 31 maintainers = with stdenv.lib.maintainers; [ telotortium ]; 32 + platforms = with stdenv.lib.platforms; unix; 33 }; 34 35 phases = ["unpackPhase" "installPhase"];
+1
pkgs/servers/monitoring/longview/default.nix
··· 58 license = licenses.gpl2Plus; 59 maintainers = [ maintainers.rvl ]; 60 inherit version; 61 }; 62 }
··· 58 license = licenses.gpl2Plus; 59 maintainers = [ maintainers.rvl ]; 60 inherit version; 61 + platforms = platforms.linux; 62 }; 63 }
+1
pkgs/servers/nosql/hyperdex/default.nix
··· 50 description = "A scalable, searchable key-value store"; 51 homepage = http://hyperdex.org; 52 license = licenses.bsd3; 53 }; 54 }
··· 50 description = "A scalable, searchable key-value store"; 51 homepage = http://hyperdex.org; 52 license = licenses.bsd3; 53 + platforms = platforms.linux; 54 }; 55 }
+1
pkgs/servers/openxpki/default.nix
··· 76 description = "Enterprise-grade PKI/Trustcenter software"; 77 license = stdenv.lib.licenses.asl20; 78 maintainers = with stdenv.lib.maintainers; [ tstrobel ]; 79 }; 80 }
··· 76 description = "Enterprise-grade PKI/Trustcenter software"; 77 license = stdenv.lib.licenses.asl20; 78 maintainers = with stdenv.lib.maintainers; [ tstrobel ]; 79 + platforms = with stdenv.lib.platforms; linux; 80 }; 81 }
+1
pkgs/servers/osrm-backend/default.nix
··· 26 homepage = https://github.com/Project-OSRM/osrm-backend/wiki; 27 description = "Open Source Routing Machine computes shortest paths in a graph. It was designed to run well with map data from the Openstreetmap Project"; 28 license = stdenv.lib.licenses.bsd2; 29 }; 30 }
··· 26 homepage = https://github.com/Project-OSRM/osrm-backend/wiki; 27 description = "Open Source Routing Machine computes shortest paths in a graph. It was designed to run well with map data from the Openstreetmap Project"; 28 license = stdenv.lib.licenses.bsd2; 29 + platforms = stdenv.lib.platforms.linux; 30 }; 31 }
+1
pkgs/servers/owncloud/default.nix
··· 25 homepage = https://owncloud.org; 26 maintainers = with stdenv.lib.maintainers; [ matejc ]; 27 license = stdenv.lib.licenses.agpl3Plus; 28 }; 29 30 });
··· 25 homepage = https://owncloud.org; 26 maintainers = with stdenv.lib.maintainers; [ matejc ]; 27 license = stdenv.lib.licenses.agpl3Plus; 28 + platforms = with stdenv.lib.platforms; unix; 29 }; 30 31 });
+1
pkgs/servers/prayer/default.nix
··· 35 homepage = http://www-uxsup.csx.cam.ac.uk/~dpc22/prayer/; 36 description = "Yet another Webmail interface for IMAP servers on Unix systems written in C"; 37 license = stdenv.lib.licenses.gpl2Plus; 38 }; 39 }
··· 35 homepage = http://www-uxsup.csx.cam.ac.uk/~dpc22/prayer/; 36 description = "Yet another Webmail interface for IMAP servers on Unix systems written in C"; 37 license = stdenv.lib.licenses.gpl2Plus; 38 + platforms = stdenv.lib.platforms.linux; 39 }; 40 }
+4
pkgs/servers/rt/default.nix
··· 21 cp -a {bin,docs,etc,lib,sbin,share} $out 22 find $out -name '*.in' -exec rm '{}' \; 23 ''; 24 }
··· 21 cp -a {bin,docs,etc,lib,sbin,share} $out 22 find $out -name '*.in' -exec rm '{}' \; 23 ''; 24 + 25 + meta = { 26 + platforms = stdenv.lib.platforms.unix; 27 + }; 28 }
+1
pkgs/servers/sql/mysql/5.5.x.nix
··· 64 meta = { 65 homepage = http://www.mysql.com/; 66 description = "The world's most popular open source database"; 67 }; 68 }
··· 64 meta = { 65 homepage = http://www.mysql.com/; 66 description = "The world's most popular open source database"; 67 + platforms = stdenv.lib.platforms.unix; 68 }; 69 }
+4
pkgs/servers/sql/mysql/jdbc/default.nix
··· 10 }; 11 12 buildInputs = [ unzip ant ]; 13 }
··· 10 }; 11 12 buildInputs = [ unzip ant ]; 13 + 14 + meta = { 15 + platforms = stdenv.lib.platforms.unix; 16 + }; 17 }
+1
pkgs/servers/sql/postgresql/jdbc/default.nix
··· 24 homepage = http://jdbc.postgresql.org/; 25 description = "JDBC driver for PostgreSQL allowing Java programs to connect to a PostgreSQL database"; 26 license = licenses.bsd3; 27 }; 28 }
··· 24 homepage = http://jdbc.postgresql.org/; 25 description = "JDBC driver for PostgreSQL allowing Java programs to connect to a PostgreSQL database"; 26 license = licenses.bsd3; 27 + platforms = platforms.unix; 28 }; 29 }
+1
pkgs/servers/sql/postgresql/psqlodbc/default.nix
··· 16 homepage = http://psqlodbc.projects.postgresql.org/; 17 description = "ODBC driver for PostgreSQL"; 18 license = licenses.lgpl2; 19 }; 20 }
··· 16 homepage = http://psqlodbc.projects.postgresql.org/; 17 description = "ODBC driver for PostgreSQL"; 18 license = licenses.lgpl2; 19 + platforms = platforms.linux; 20 }; 21 }
+1
pkgs/servers/squid/default.nix
··· 20 description = "A caching proxy for the Web supporting HTTP, HTTPS, FTP, and more"; 21 homepage = "http://www.squid-cache.org"; 22 license = stdenv.lib.licenses.gpl2; 23 }; 24 }
··· 20 description = "A caching proxy for the Web supporting HTTP, HTTPS, FTP, and more"; 21 homepage = "http://www.squid-cache.org"; 22 license = stdenv.lib.licenses.gpl2; 23 + platforms = stdenv.lib.platforms.linux; 24 }; 25 }
+1 -1
pkgs/servers/x11/xorg/overrides.nix
··· 266 267 xcbutilcursor = attrs: attrs // { 268 outputs = [ "dev" "out" ]; 269 - meta.maintainers = [ stdenv.lib.maintainers.lovek323 ]; 270 }; 271 272 xcbutilimage = attrs: attrs // {
··· 266 267 xcbutilcursor = attrs: attrs // { 268 outputs = [ "dev" "out" ]; 269 + meta = attrs.meta // { maintainers = [ stdenv.lib.maintainers.lovek323 ]; }; 270 }; 271 272 xcbutilimage = attrs: attrs // {
+1
pkgs/servers/xmpp/openfire/default.nix
··· 22 23 meta = { 24 description = "XMPP server in Java"; 25 }; 26 }
··· 22 23 meta = { 24 description = "XMPP server in Java"; 25 + platforms = stdenv.lib.platforms.unix; 26 }; 27 }
+1
pkgs/servers/xmpp/pyIRCt/default.nix
··· 36 37 meta = { 38 description = "IRC transport module for XMPP"; 39 }; 40 }
··· 36 37 meta = { 38 description = "IRC transport module for XMPP"; 39 + platforms = stdenv.lib.platforms.unix; 40 }; 41 }
+1
pkgs/servers/xmpp/pyMAILt/default.nix
··· 34 35 meta = { 36 description = "Email transport module for XMPP"; 37 }; 38 }
··· 34 35 meta = { 36 description = "Email transport module for XMPP"; 37 + platforms = stdenv.lib.platforms.unix; 38 }; 39 }
+1 -1
pkgs/shells/dash/default.nix
··· 13 meta = { 14 homepage = http://gondor.apana.org.au/~herbert/dash/; 15 description = "A POSIX-compliant implementation of /bin/sh that aims to be as small as possible"; 16 - hydraPlatforms = stdenv.lib.platforms.linux; 17 }; 18 19 passthru = {
··· 13 meta = { 14 homepage = http://gondor.apana.org.au/~herbert/dash/; 15 description = "A POSIX-compliant implementation of /bin/sh that aims to be as small as possible"; 16 + platforms = stdenv.lib.platforms.unix; 17 }; 18 19 passthru = {
+1
pkgs/shells/fish-foreign-env/default.nix
··· 24 description = "A foreign environment interface for Fish shell"; 25 license = licenses.mit; 26 maintainers = with maintainers; [ jgillich ]; 27 }; 28 }
··· 24 description = "A foreign environment interface for Fish shell"; 25 license = licenses.mit; 26 maintainers = with maintainers; [ jgillich ]; 27 + platforms = with platforms; unix; 28 }; 29 }
+1
pkgs/shells/zsh-prezto/default.nix
··· 41 homepage = "https://github.com/sorin-ionescu/prezto"; 42 license = licenses.mit; 43 maintainers = with maintainers; [ garbas ]; 44 }; 45 }
··· 41 homepage = "https://github.com/sorin-ionescu/prezto"; 42 license = licenses.mit; 43 maintainers = with maintainers; [ garbas ]; 44 + platforms = with platforms; unix; 45 }; 46 }
+1
pkgs/tools/X11/dragon-drop/default.nix
··· 24 homepage = "https://github.com/mwh/dragon"; 25 maintainers = with maintainers; [ jb55 ]; 26 license = licenses.gpl3; 27 }; 28 }
··· 24 homepage = "https://github.com/mwh/dragon"; 25 maintainers = with maintainers; [ jb55 ]; 26 license = licenses.gpl3; 27 + platforms = with platforms; unix; 28 }; 29 }
+1
pkgs/tools/X11/obconf/default.nix
··· 23 homepage = "http://openbox.org/wiki/ObConf"; 24 license = stdenv.lib.licenses.gpl2; 25 maintainers = [ stdenv.lib.maintainers.lhvwb ]; 26 }; 27 }
··· 23 homepage = "http://openbox.org/wiki/ObConf"; 24 license = stdenv.lib.licenses.gpl2; 25 maintainers = [ stdenv.lib.maintainers.lhvwb ]; 26 + platforms = stdenv.lib.platforms.linux; 27 }; 28 }
+1
pkgs/tools/X11/screen-message/default.nix
··· 20 description = "Displays a short text fullscreen in an X11 window"; 21 license = stdenv.lib.licenses.gpl2Plus; 22 maintainers = [ stdenv.lib.maintainers.fpletz ]; 23 }; 24 }
··· 20 description = "Displays a short text fullscreen in an X11 window"; 21 license = stdenv.lib.licenses.gpl2Plus; 22 maintainers = [ stdenv.lib.maintainers.fpletz ]; 23 + platforms = stdenv.lib.platforms.unix; 24 }; 25 }
+4
pkgs/tools/X11/virtualgl/default.nix
··· 16 '' + lib.optionalString (virtualglLib_i686 != null) '' 17 ln -sf ${virtualglLib_i686}/bin/.vglrun.vars32 $out/bin 18 ''; 19 }
··· 16 '' + lib.optionalString (virtualglLib_i686 != null) '' 17 ln -sf ${virtualglLib_i686}/bin/.vglrun.vars32 $out/bin 18 ''; 19 + 20 + meta = { 21 + platforms = stdenv.lib.platforms.linux; 22 + }; 23 }
+1
pkgs/tools/X11/x2vnc/default.nix
··· 18 meta = { 19 homepage = http://fredrik.hubbe.net/x2vnc.html; 20 description = "A program to control a remote VNC server"; 21 }; 22 }
··· 18 meta = { 19 homepage = http://fredrik.hubbe.net/x2vnc.html; 20 description = "A program to control a remote VNC server"; 21 + platforms = stdenv.lib.platforms.unix; 22 }; 23 }
+1
pkgs/tools/X11/x2x/default.nix
··· 26 description = "Allows the keyboard, mouse on one X display to be used to control another X display"; 27 homepage = http://x2x.dottedmag.net; 28 license = "BSD"; 29 }; 30 }
··· 26 description = "Allows the keyboard, mouse on one X display to be used to control another X display"; 27 homepage = http://x2x.dottedmag.net; 28 license = "BSD"; 29 + platforms = stdenv.lib.platforms.linux; 30 }; 31 }
+1
pkgs/tools/X11/xbrightness/default.nix
··· 29 description = "X11 brigthness and gamma software control"; 30 homepage = http://shallowsky.com/software; 31 license = stdenv.lib.licenses.mit; 32 }; 33 }
··· 29 description = "X11 brigthness and gamma software control"; 30 homepage = http://shallowsky.com/software; 31 license = stdenv.lib.licenses.mit; 32 + platforms = stdenv.lib.platforms.linux; 33 }; 34 }
+1
pkgs/tools/X11/xchainkeys/default.nix
··· 14 homepage = "https://code.google.com/p/xchainkeys/"; 15 description = "A standalone X11 program to create chained key bindings"; 16 license = stdenv.lib.licenses.gpl3; 17 }; 18 }
··· 14 homepage = "https://code.google.com/p/xchainkeys/"; 15 description = "A standalone X11 program to create chained key bindings"; 16 license = stdenv.lib.licenses.gpl3; 17 + platforms = stdenv.lib.platforms.unix; 18 }; 19 }
+1
pkgs/tools/X11/xinput_calibrator/default.nix
··· 17 description = "A generic touchscreen calibration program for X.Org"; 18 license = stdenv.lib.licenses.mit; 19 maintainers = [ stdenv.lib.maintainers.flosse ]; 20 }; 21 }
··· 17 description = "A generic touchscreen calibration program for X.Org"; 18 license = stdenv.lib.licenses.mit; 19 maintainers = [ stdenv.lib.maintainers.flosse ]; 20 + platforms = stdenv.lib.platforms.linux; 21 }; 22 }
+1
pkgs/tools/X11/xlaunch/default.nix
··· 59 meta = { 60 description = ''Wrapper to parse NixOS-specific X environment and launch a custom X session''; 61 maintainers = [ stdenv.lib.maintainers.raskin ]; 62 }; 63 }
··· 59 meta = { 60 description = ''Wrapper to parse NixOS-specific X environment and launch a custom X session''; 61 maintainers = [ stdenv.lib.maintainers.raskin ]; 62 + platforms = stdenv.lib.platforms.linux; 63 }; 64 }
+4
pkgs/tools/X11/xmacro/default.nix
··· 18 preInstall = "echo -e 'install:\n mkdir \${out}/bin;\n cp xmacrorec xmacrorec2 xmacroplay \${out}/bin;' >>Makefile; "; 19 20 buildInputs = [ libX11 libXtst xextproto libXi inputproto ]; 21 }
··· 18 preInstall = "echo -e 'install:\n mkdir \${out}/bin;\n cp xmacrorec xmacrorec2 xmacroplay \${out}/bin;' >>Makefile; "; 19 20 buildInputs = [ libX11 libXtst xextproto libXi inputproto ]; 21 + 22 + meta = { 23 + platforms = stdenv.lib.platforms.linux; 24 + }; 25 }
+4
pkgs/tools/X11/xrestop/default.nix
··· 10 }; 11 12 buildInputs = [ pkgconfig xorg.libX11 xorg.libXres xorg.libXext ncurses ]; 13 }
··· 10 }; 11 12 buildInputs = [ pkgconfig xorg.libX11 xorg.libXres xorg.libXext ncurses ]; 13 + 14 + meta = { 15 + platforms = stdenv.lib.platforms.unix; 16 + }; 17 }
+8 -1
pkgs/tools/admin/simp_le/default.nix
··· 1 - { stdenv, fetchFromGitHub, pythonPackages }: 2 3 pythonPackages.buildPythonApplication rec { 4 name = "simp_le-2016-04-17"; ··· 9 rev = "3a103b76f933f9aef782a47401dd2eff5057a6f7"; 10 sha256 = "0x8gqazn09m30bn1l7xnf8snhbb7yz7sb09imciqmm4jqdvn797z"; 11 }; 12 13 propagatedBuildInputs = with pythonPackages; [ acme_0_5_0 ]; 14
··· 1 + { stdenv, fetchFromGitHub, fetchpatch, pythonPackages }: 2 3 pythonPackages.buildPythonApplication rec { 4 name = "simp_le-2016-04-17"; ··· 9 rev = "3a103b76f933f9aef782a47401dd2eff5057a6f7"; 10 sha256 = "0x8gqazn09m30bn1l7xnf8snhbb7yz7sb09imciqmm4jqdvn797z"; 11 }; 12 + 13 + patches = [ 14 + (fetchpatch { 15 + url = "https://github.com/kuba/simp_le/commit/4bc788fdd611c4118c3f86b5f546779723aca5a7.patch"; 16 + sha256 = "0036p11qn3plydv5s5z6i28r6ihy1ipjl0y8la0izpkiq273byfc"; 17 + }) 18 + ]; 19 20 propagatedBuildInputs = with pythonPackages; [ acme_0_5_0 ]; 21
+1 -1
pkgs/tools/archivers/atool/default.nix
··· 13 meta = { 14 homepage = http://www.nongnu.org/atool; 15 description = "Archive command line helper"; 16 - hydraPlatforms = stdenv.lib.platforms.linux; 17 }; 18 }
··· 13 meta = { 14 homepage = http://www.nongnu.org/atool; 15 description = "Archive command line helper"; 16 + platforms = stdenv.lib.platforms.unix; 17 }; 18 }
+1
pkgs/tools/archivers/pxattr/default.nix
··· 20 description = "Provides a single interface to extended file attributes"; 21 maintainers = [ stdenv.lib.maintainers.vrthra ]; 22 license = [ stdenv.lib.licenses.mit ]; 23 }; 24 }
··· 20 description = "Provides a single interface to extended file attributes"; 21 maintainers = [ stdenv.lib.maintainers.vrthra ]; 22 license = [ stdenv.lib.licenses.mit ]; 23 + platforms = stdenv.lib.platforms.unix; 24 }; 25 }
+1
pkgs/tools/audio/acoustid-fingerprinter/default.nix
··· 19 description = "Audio fingerprinting tool using chromaprint"; 20 license = stdenv.lib.licenses.gpl2Plus; 21 maintainers = with maintainers; [ ehmry ]; 22 }; 23 }
··· 19 description = "Audio fingerprinting tool using chromaprint"; 20 license = stdenv.lib.licenses.gpl2Plus; 21 maintainers = with maintainers; [ ehmry ]; 22 + platforms = with platforms; linux; 23 }; 24 }
+6 -5
pkgs/tools/audio/dir2opus/default.nix
··· 25 26 postFixup = "wrapPythonPrograms"; 27 28 - meta = with stdenv.lib; 29 - { homepage = https://github.com/ehmry/dir2opus; 30 - maintainers = [ maintainers.ehmry ]; 31 - license = licenses.gpl2; 32 - }; 33 }
··· 25 26 postFixup = "wrapPythonPrograms"; 27 28 + meta = with stdenv.lib; { 29 + homepage = https://github.com/ehmry/dir2opus; 30 + maintainers = [ maintainers.ehmry ]; 31 + license = licenses.gpl2; 32 + platforms = platforms.unix; 33 + }; 34 }
+1 -1
pkgs/tools/audio/pasystray/default.nix
··· 32 homepage = "https://github.com/christophgysin/pasystray"; 33 license = licenses.lgpl21Plus; 34 maintainers = [ maintainers.exlevan ]; 35 - platfoms = platforms.linux; 36 }; 37 }
··· 32 homepage = "https://github.com/christophgysin/pasystray"; 33 license = licenses.lgpl21Plus; 34 maintainers = [ maintainers.exlevan ]; 35 + platforms = platforms.linux; 36 }; 37 }
+1 -1
pkgs/tools/backup/bup/default.nix
··· 62 Capable of doing *fast* incremental backups of virtual machine images. 63 ''; 64 65 - hydraPlatforms = platforms.linux; 66 maintainers = with maintainers; [ muflax ]; 67 }; 68 }
··· 62 Capable of doing *fast* incremental backups of virtual machine images. 63 ''; 64 65 + platforms = platforms.linux; 66 maintainers = with maintainers; [ muflax ]; 67 }; 68 }
+1
pkgs/tools/backup/httrack/default.nix
··· 16 description = "Easy-to-use offline browser utility"; 17 license = stdenv.lib.licenses.gpl3; 18 maintainers = with stdenv.lib.maintainers; [ the-kenny ]; 19 }; 20 }
··· 16 description = "Easy-to-use offline browser utility"; 17 license = stdenv.lib.licenses.gpl3; 18 maintainers = with stdenv.lib.maintainers; [ the-kenny ]; 19 + platforms = with stdenv.lib.platforms; unix; 20 }; 21 }
+1
pkgs/tools/bluetooth/bluez-tools/default.nix
··· 19 description = "Command line bluetooth manager for Bluez5"; 20 license = stdenv.lib.licenses.gpl2; 21 maintainers = [ maintainers.dasuxullebt ]; 22 }; 23 24 }
··· 19 description = "Command line bluetooth manager for Bluez5"; 20 license = stdenv.lib.licenses.gpl2; 21 maintainers = [ maintainers.dasuxullebt ]; 22 + platforms = platforms.unix; 23 }; 24 25 }
+1
pkgs/tools/bluetooth/obex-data-server/default.nix
··· 19 20 meta = { 21 homepage = http://wiki.muiline.com/obex-data-server; 22 }; 23 }
··· 19 20 meta = { 21 homepage = http://wiki.muiline.com/obex-data-server; 22 + platforms = stdenv.lib.platforms.linux; 23 }; 24 }
+1
pkgs/tools/bluetooth/obexd/default.nix
··· 14 15 meta = { 16 homepage = http://www.bluez.org/; 17 }; 18 }
··· 14 15 meta = { 16 homepage = http://www.bluez.org/; 17 + platforms = stdenv.lib.platforms.linux; 18 }; 19 }
+1
pkgs/tools/cd-dvd/bchunk/default.nix
··· 22 meta = { 23 homepage = http://he.fi/bchunk/; 24 description = "A program that converts CD-ROM images in BIN/CUE format into a set of ISO and CDR tracks"; 25 }; 26 }
··· 22 meta = { 23 homepage = http://he.fi/bchunk/; 24 description = "A program that converts CD-ROM images in BIN/CUE format into a set of ISO and CDR tracks"; 25 + platforms = stdenv.lib.platforms.linux; 26 }; 27 }
+1
pkgs/tools/cd-dvd/cdrdao/default.nix
··· 27 meta = { 28 description = "A tool for recording audio or data CD-Rs in disk-at-once (DAO) mode"; 29 homepage = http://cdrdao.sourceforge.net/; 30 }; 31 }
··· 27 meta = { 28 description = "A tool for recording audio or data CD-Rs in disk-at-once (DAO) mode"; 29 homepage = http://cdrdao.sourceforge.net/; 30 + platforms = stdenv.lib.platforms.linux; 31 }; 32 }
+1
pkgs/tools/cd-dvd/cdrkit/default.nix
··· 39 40 homepage = http://cdrkit.org/; 41 license = stdenv.lib.licenses.gpl2; 42 }; 43 }
··· 39 40 homepage = http://cdrkit.org/; 41 license = stdenv.lib.licenses.gpl2; 42 + platforms = stdenv.lib.platforms.linux; 43 }; 44 }
+1
pkgs/tools/cd-dvd/dvd+rw-tools/default.nix
··· 21 meta = { 22 homepage = http://fy.chalmers.se/~appro/linux/DVD+RW/tools; 23 description = "Tools for burning DVDs"; 24 }; 25 }
··· 21 meta = { 22 homepage = http://fy.chalmers.se/~appro/linux/DVD+RW/tools; 23 description = "Tools for burning DVDs"; 24 + platforms = stdenv.lib.platforms.linux; 25 }; 26 }
+1
pkgs/tools/cd-dvd/lsdvd/default.nix
··· 16 meta = { 17 homepage = "http://sourceforge.net/projects/lsdvd/"; 18 shortDescription = "Display information about audio, video, and subtitle tracks on a DVD"; 19 }; 20 }
··· 16 meta = { 17 homepage = "http://sourceforge.net/projects/lsdvd/"; 18 shortDescription = "Display information about audio, video, and subtitle tracks on a DVD"; 19 + platforms = stdenv.lib.platforms.linux; 20 }; 21 }
+1
pkgs/tools/compression/gzrt/default.nix
··· 19 homepage = http://www.urbanophile.com/arenn/hacking/gzrt/; 20 description = "The gzip Recovery Toolkit"; 21 license = stdenv.lib.licenses.gpl3; 22 }; 23 }
··· 19 homepage = http://www.urbanophile.com/arenn/hacking/gzrt/; 20 description = "The gzip Recovery Toolkit"; 21 license = stdenv.lib.licenses.gpl3; 22 + platforms = stdenv.lib.platforms.unix; 23 }; 24 }
+1
pkgs/tools/compression/lrzip/default.nix
··· 16 description = "The CK LRZIP compression program (LZMA + RZIP)"; 17 license = stdenv.lib.licenses.gpl2Plus; 18 inherit version; 19 }; 20 }
··· 16 description = "The CK LRZIP compression program (LZMA + RZIP)"; 17 license = stdenv.lib.licenses.gpl2Plus; 18 inherit version; 19 + platforms = stdenv.lib.platforms.unix; 20 }; 21 }
+1
pkgs/tools/compression/lzop/default.nix
··· 13 homepage = http://www.lzop.org; 14 description = "Fast file compressor"; 15 license = licenses.gpl2; 16 }; 17 }
··· 13 homepage = http://www.lzop.org; 14 description = "Fast file compressor"; 15 license = licenses.gpl2; 16 + platforms = platforms.unix; 17 }; 18 }
+1
pkgs/tools/compression/ncompress/default.nix
··· 16 homepage = http://ncompress.sourceforge.net/; 17 license = stdenv.lib.licenses.publicDomain; 18 description = "A fast, simple LZW file compressor"; 19 }; 20 }
··· 16 homepage = http://ncompress.sourceforge.net/; 17 license = stdenv.lib.licenses.publicDomain; 18 description = "A fast, simple LZW file compressor"; 19 + platforms = stdenv.lib.platforms.unix; 20 }; 21 }
+1 -1
pkgs/tools/compression/pigz/default.nix
··· 27 meta = { 28 homepage = "http://www.zlib.net/pigz/"; 29 description = "A parallel implementation of gzip for multi-core machines"; 30 - hydraPlatforms = stdenv.lib.platforms.linux; 31 }; 32 }
··· 27 meta = { 28 homepage = "http://www.zlib.net/pigz/"; 29 description = "A parallel implementation of gzip for multi-core machines"; 30 + platforms = stdenv.lib.platforms.linux; 31 }; 32 }
+1
pkgs/tools/compression/pxz/default.nix
··· 39 cores and processors simultaneously. Its primary goal is to utilize all 40 resources to speed up compression time with minimal possible influence 41 on compression ratio''; 42 }; 43 }
··· 39 cores and processors simultaneously. Its primary goal is to utilize all 40 resources to speed up compression time with minimal possible influence 41 on compression ratio''; 42 + platforms = with stdenv.lib.platforms; linux; 43 }; 44 }
+1
pkgs/tools/compression/rzip/default.nix
··· 12 homepage = http://rzip.samba.org/; 13 description = "Compression program"; 14 license = stdenv.lib.licenses.gpl2Plus; 15 }; 16 }
··· 12 homepage = http://rzip.samba.org/; 13 description = "Compression program"; 14 license = stdenv.lib.licenses.gpl2Plus; 15 + platforms = stdenv.lib.platforms.unix; 16 }; 17 }
+1
pkgs/tools/compression/upx/default.nix
··· 30 homepage = http://upx.sourceforge.net/; 31 description = "The Ultimate Packer for eXecutables"; 32 license = stdenv.lib.licenses.gpl2Plus; 33 }; 34 }
··· 30 homepage = http://upx.sourceforge.net/; 31 description = "The Ultimate Packer for eXecutables"; 32 license = stdenv.lib.licenses.gpl2Plus; 33 + platforms = stdenv.lib.platforms.unix; 34 }; 35 }
+1
pkgs/tools/compression/zdelta/default.nix
··· 10 11 meta = { 12 homepage = http://cis.poly.edu/zdelta; 13 }; 14 }
··· 10 11 meta = { 12 homepage = http://cis.poly.edu/zdelta; 13 + platforms = stdenv.lib.platforms.linux; 14 }; 15 }
+1
pkgs/tools/filesystems/ciopfs/default.nix
··· 16 homepage = http://www.brain-dump.org/projects/ciopfs/; 17 description = "A case-insensitive filesystem layered on top of any other filesystem"; 18 license = stdenv.lib.licenses.gpl2; 19 }; 20 }
··· 16 homepage = http://www.brain-dump.org/projects/ciopfs/; 17 description = "A case-insensitive filesystem layered on top of any other filesystem"; 18 license = stdenv.lib.licenses.gpl2; 19 + platforms = stdenv.lib.platforms.linux; 20 }; 21 }
+4
pkgs/tools/filesystems/curlftpfs/default.nix
··· 7 sha256 = "0n397hmv21jsr1j7zx3m21i7ryscdhkdsyqpvvns12q7qwwlgd2f"; 8 }; 9 buildInputs = [fuse curl pkgconfig glib zlib]; 10 }
··· 7 sha256 = "0n397hmv21jsr1j7zx3m21i7ryscdhkdsyqpvvns12q7qwwlgd2f"; 8 }; 9 buildInputs = [fuse curl pkgconfig glib zlib]; 10 + 11 + meta = { 12 + platforms = stdenv.lib.platforms.linux; 13 + }; 14 }
+1
pkgs/tools/filesystems/encfs/default.nix
··· 27 description = "Provides an encrypted filesystem in user-space via FUSE"; 28 license = licenses.lgpl2; 29 maintainers = with maintainers; [ nckx ]; 30 }; 31 }
··· 27 description = "Provides an encrypted filesystem in user-space via FUSE"; 28 license = licenses.lgpl2; 29 maintainers = with maintainers; [ nckx ]; 30 + platforms = with platforms; linux; 31 }; 32 }
+1 -1
pkgs/tools/filesystems/fatresize/default.nix
··· 34 meta = { 35 description = "The FAT16/FAT32 non-destructive resizer"; 36 homepage = http://sourceforge.net/projects/fatresize; 37 - platform = stdenv.lib.platforms.linux; 38 }; 39 }
··· 34 meta = { 35 description = "The FAT16/FAT32 non-destructive resizer"; 36 homepage = http://sourceforge.net/projects/fatresize; 37 + platforms = stdenv.lib.platforms.linux; 38 }; 39 }
+1
pkgs/tools/filesystems/fatsort/default.nix
··· 19 maintainers = [ maintainers.kovirobi ]; 20 license = licenses.gpl2; 21 inherit version; 22 }; 23 }
··· 19 maintainers = [ maintainers.kovirobi ]; 20 license = licenses.gpl2; 21 inherit version; 22 + platforms = platforms.linux; 23 }; 24 }
+1
pkgs/tools/filesystems/reiser4progs/default.nix
··· 23 inherit version; 24 homepage = http://www.namesys.com/; 25 description = "Reiser4 utilities"; 26 }; 27 }
··· 23 inherit version; 24 homepage = http://www.namesys.com/; 25 description = "Reiser4 utilities"; 26 + platforms = stdenv.lib.platforms.linux; 27 }; 28 }
+1
pkgs/tools/filesystems/reiserfsprogs/default.nix
··· 18 homepage = http://www.namesys.com/; 19 description = "ReiserFS utilities"; 20 license = stdenv.lib.licenses.gpl2; 21 }; 22 }
··· 18 homepage = http://www.namesys.com/; 19 description = "ReiserFS utilities"; 20 license = stdenv.lib.licenses.gpl2; 21 + platforms = stdenv.lib.platforms.linux; 22 }; 23 }
+1
pkgs/tools/filesystems/s3backer/default.nix
··· 26 description = "FUSE-based single file backing store via Amazon S3"; 27 license = licenses.gpl2Plus; 28 maintainers = with maintainers; [ nckx ]; 29 }; 30 }
··· 26 description = "FUSE-based single file backing store via Amazon S3"; 27 license = licenses.gpl2Plus; 28 maintainers = with maintainers; [ nckx ]; 29 + platforms = with platforms; linux; 30 }; 31 }
+1
pkgs/tools/filesystems/s3fs/default.nix
··· 16 meta = with stdenv.lib; { 17 description = "Mount an S3 bucket as filesystem through FUSE"; 18 license = licenses.gpl2; 19 }; 20 }
··· 16 meta = with stdenv.lib; { 17 description = "Mount an S3 bucket as filesystem through FUSE"; 18 license = licenses.gpl2; 19 + platforms = platforms.linux; 20 }; 21 }
+1
pkgs/tools/filesystems/snapraid/default.nix
··· 14 description = "A backup program for disk arrays"; 15 license = stdenv.lib.licenses.gpl3; 16 maintainers = [ stdenv.lib.maintainers.makefu ]; 17 }; 18 }
··· 14 description = "A backup program for disk arrays"; 15 license = stdenv.lib.licenses.gpl3; 16 maintainers = [ stdenv.lib.maintainers.makefu ]; 17 + platforms = stdenv.lib.platforms.unix; 18 }; 19 }
+1
pkgs/tools/filesystems/wdfs/default.nix
··· 11 meta = { 12 homepage = "http://noedler.de/projekte/wdfs/"; 13 description = "User-space filesystem that allows to mount a webdav share"; 14 }; 15 }
··· 11 meta = { 12 homepage = "http://noedler.de/projekte/wdfs/"; 13 description = "User-space filesystem that allows to mount a webdav share"; 14 + platforms = stdenv.lib.platforms.linux; 15 }; 16 }
+1
pkgs/tools/filesystems/zfstools/default.nix
··· 35 for ZFS, which also supports auto snapshotting mysql databases. 36 ''; 37 license = licenses.bsd2; 38 }; 39 }
··· 35 for ZFS, which also supports auto snapshotting mysql databases. 36 ''; 37 license = licenses.bsd2; 38 + platforms = platforms.linux; 39 }; 40 }
+2 -1
pkgs/tools/graphics/bins/default.nix
··· 44 description = "Generates static HTML photo albums"; 45 homepage = http://bins.sautret.org; 46 license = stdenv.lib.licenses.gpl2; 47 }; 48 - }
··· 44 description = "Generates static HTML photo albums"; 45 homepage = http://bins.sautret.org; 46 license = stdenv.lib.licenses.gpl2; 47 + platforms = stdenv.lib.platforms.linux; 48 }; 49 + }
+1
pkgs/tools/graphics/briss/default.nix
··· 27 homepage = http://sourceforge.net/projects/briss/; 28 description = "Java application for cropping PDF files"; 29 license = stdenv.lib.licenses.gpl3; 30 }; 31 }
··· 27 homepage = http://sourceforge.net/projects/briss/; 28 description = "Java application for cropping PDF files"; 29 license = stdenv.lib.licenses.gpl3; 30 + platforms = stdenv.lib.platforms.unix; 31 }; 32 }
+1
pkgs/tools/graphics/cuneiform/default.nix
··· 15 16 meta = { 17 description = "Multi-language OCR system"; 18 }; 19 }
··· 15 16 meta = { 17 description = "Multi-language OCR system"; 18 + platforms = stdenv.lib.platforms.linux; 19 }; 20 }
+1
pkgs/tools/graphics/enblend-enfuse/default.nix
··· 26 description = "Blends away the seams in a panoramic image mosaic using a multiresolution spline"; 27 license = licenses.gpl2; 28 maintainers = with maintainers; [ nckx ]; 29 }; 30 }
··· 26 description = "Blends away the seams in a panoramic image mosaic using a multiresolution spline"; 27 license = licenses.gpl2; 28 maintainers = with maintainers; [ nckx ]; 29 + platforms = with platforms; linux; 30 }; 31 }
+1
pkgs/tools/graphics/exif/default.nix
··· 13 meta = { 14 homepage = http://libexif.sourceforge.net/; 15 description = "A utility to read and manipulate EXIF data in digital photographs"; 16 }; 17 }
··· 13 meta = { 14 homepage = http://libexif.sourceforge.net/; 15 description = "A utility to read and manipulate EXIF data in digital photographs"; 16 + platforms = stdenv.lib.platforms.unix; 17 }; 18 }
+1
pkgs/tools/graphics/exiftags/default.nix
··· 21 description = "Displays EXIF data from JPEG files"; 22 license = stdenv.lib.licenses.free; 23 maintainers = with stdenv.lib.maintainers; [viric]; 24 }; 25 }
··· 21 description = "Displays EXIF data from JPEG files"; 22 license = stdenv.lib.licenses.free; 23 maintainers = with stdenv.lib.maintainers; [viric]; 24 + platforms = with stdenv.lib.platforms; unix; 25 }; 26 }
+4
pkgs/tools/graphics/glxinfo/default.nix
··· 24 mkdir -p $out/bin 25 cp glxinfo glxgears $out/bin/ 26 "; 27 }
··· 24 mkdir -p $out/bin 25 cp glxinfo glxgears $out/bin/ 26 "; 27 + 28 + meta = { 29 + platforms = stdenv.lib.platforms.linux; 30 + }; 31 }
+1
pkgs/tools/graphics/gmic/default.nix
··· 36 homepage = http://gmic.eu/; 37 license = licenses.cecill20; 38 maintainers = [ maintainers.rycee ]; 39 }; 40 }
··· 36 homepage = http://gmic.eu/; 37 license = licenses.cecill20; 38 maintainers = [ maintainers.rycee ]; 39 + platforms = platforms.linux; 40 }; 41 }
+1 -1
pkgs/tools/graphics/gnuplot/default.nix
··· 53 meta = with lib; { 54 homepage = http://www.gnuplot.info/; 55 description = "A portable command-line driven graphing utility for many platforms"; 56 - hydraPlatforms = platforms.linux ++ platforms.darwin; 57 maintainers = with maintainers; [ lovek323 ]; 58 }; 59 }
··· 53 meta = with lib; { 54 homepage = http://www.gnuplot.info/; 55 description = "A portable command-line driven graphing utility for many platforms"; 56 + platforms = platforms.linux ++ platforms.darwin; 57 maintainers = with maintainers; [ lovek323 ]; 58 }; 59 }
+1
pkgs/tools/graphics/graphviz/2.0.nix
··· 33 description = "A program for visualising graphs"; 34 homepage = http://www.graphviz.org/; 35 branch = "2.0"; 36 }; 37 }
··· 33 description = "A program for visualising graphs"; 34 homepage = http://www.graphviz.org/; 35 branch = "2.0"; 36 + platforms = stdenv.lib.platforms.unix; 37 }; 38 }
+1 -1
pkgs/tools/graphics/graphviz/2.32.nix
··· 56 interfaces for other technical domains. 57 ''; 58 59 - hydraPlatforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; 60 maintainers = with stdenv.lib.maintainers; [ bjornfor raskin ]; 61 inherit version; 62 branch = "2.32";
··· 56 interfaces for other technical domains. 57 ''; 58 59 + platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; 60 maintainers = with stdenv.lib.maintainers; [ bjornfor raskin ]; 61 inherit version; 62 branch = "2.32";
+1 -1
pkgs/tools/graphics/graphviz/default.nix
··· 63 interfaces for other technical domains. 64 ''; 65 66 - hydraPlatforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; 67 maintainers = with stdenv.lib.maintainers; [ bjornfor raskin ]; 68 downloadPage = "http://www.graphviz.org/pub/graphviz/ARCHIVE/"; 69 inherit version;
··· 63 interfaces for other technical domains. 64 ''; 65 66 + platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; 67 maintainers = with stdenv.lib.maintainers; [ bjornfor raskin ]; 68 downloadPage = "http://www.graphviz.org/pub/graphviz/ARCHIVE/"; 69 inherit version;
+1
pkgs/tools/graphics/leela/default.nix
··· 19 homepage = https://github.com/TrilbyWhite/Leela; 20 license = stdenv.lib.licenses.gpl3; 21 maintainers = [ stdenv.lib.maintainers.puffnfresh ]; 22 }; 23 }
··· 19 homepage = https://github.com/TrilbyWhite/Leela; 20 license = stdenv.lib.licenses.gpl3; 21 maintainers = [ stdenv.lib.maintainers.puffnfresh ]; 22 + platforms = stdenv.lib.platforms.linux; 23 }; 24 }
+1
pkgs/tools/graphics/lprof/default.nix
··· 42 description = "Little CMS ICC profile construction set"; 43 homepage = "http://sourceforge.net/projects/lprof"; 44 license = stdenv.lib.licenses.gpl2; 45 }; 46 }
··· 42 description = "Little CMS ICC profile construction set"; 43 homepage = "http://sourceforge.net/projects/lprof"; 44 license = stdenv.lib.licenses.gpl2; 45 + platforms = stdenv.lib.platforms.linux; 46 }; 47 }
+1
pkgs/tools/graphics/optipng/default.nix
··· 34 homepage = http://optipng.sourceforge.net/; 35 description = "A PNG optimizer"; 36 license = licenses.zlib; 37 }; 38 }
··· 34 homepage = http://optipng.sourceforge.net/; 35 description = "A PNG optimizer"; 36 license = licenses.zlib; 37 + platforms = platforms.unix; 38 }; 39 }
+1
pkgs/tools/graphics/pgf/default.nix
··· 28 homepage = http://www.libpgf.org/; 29 description = "Progressive Graphics Format command line program"; 30 license = stdenv.lib.licenses.lgpl21Plus; 31 }; 32 }
··· 28 homepage = http://www.libpgf.org/; 29 description = "Progressive Graphics Format command line program"; 30 license = stdenv.lib.licenses.lgpl21Plus; 31 + platforms = stdenv.lib.platforms.linux; 32 }; 33 }
+1
pkgs/tools/graphics/ploticus/default.nix
··· 24 license = licenses.gpl2Plus; 25 maintainers = with maintainers; [ pSub ]; 26 homepage = http://ploticus.sourceforge.net/; 27 }; 28 }
··· 24 license = licenses.gpl2Plus; 25 maintainers = with maintainers; [ pSub ]; 26 homepage = http://ploticus.sourceforge.net/; 27 + platforms = with platforms; linux; 28 }; 29 }
+4
pkgs/tools/graphics/transfig/default.nix
··· 29 30 gensvgPatch = 31 ./patch-fig2dev-dev-gensvg.c; 32 }
··· 29 30 gensvgPatch = 31 ./patch-fig2dev-dev-gensvg.c; 32 + 33 + meta = { 34 + platforms = stdenv.lib.platforms.unix; 35 + }; 36 }
+1
pkgs/tools/graphics/welkin/default.nix
··· 31 ]; 32 hydraPlatforms = []; 33 license = stdenv.lib.licenses.free; 34 }; 35 }
··· 31 ]; 32 hydraPlatforms = []; 33 license = stdenv.lib.licenses.free; 34 + platforms = with stdenv.lib.platforms; unix; 35 }; 36 }
+1
pkgs/tools/graphics/wkhtmltopdf/default.nix
··· 128 ''; 129 license = licenses.gpl3Plus; 130 maintainers = with maintainers; [ jb55 ]; 131 }; 132 }
··· 128 ''; 129 license = licenses.gpl3Plus; 130 maintainers = with maintainers; [ jb55 ]; 131 + platforms = with platforms; linux; 132 }; 133 }
+1
pkgs/tools/graphics/xcftools/default.nix
··· 35 require the Gimp to even be installed. 36 ''; 37 license = stdenv.lib.licenses.gpl2; 38 }; 39 }
··· 35 require the Gimp to even be installed. 36 ''; 37 license = stdenv.lib.licenses.gpl2; 38 + platforms = stdenv.lib.platforms.linux; 39 }; 40 }
+1
pkgs/tools/misc/antimicro/default.nix
··· 20 homepage = "https://github.com/Ryochan7/antimicro"; 21 maintainers = with maintainers; [ jb55 ]; 22 license = licenses.gpl3; 23 }; 24 }
··· 20 homepage = "https://github.com/Ryochan7/antimicro"; 21 maintainers = with maintainers; [ jb55 ]; 22 license = licenses.gpl3; 23 + platforms = with platforms; linux; 24 }; 25 }
+1
pkgs/tools/misc/autorandr/default.nix
··· 44 description = "Automatic display configuration selector based on connected devices"; 45 homepage = https://github.com/wertarbyte/autorandr; 46 maintainers = [ stdenv.lib.maintainers.coroa ]; 47 }; 48 }
··· 44 description = "Automatic display configuration selector based on connected devices"; 45 homepage = https://github.com/wertarbyte/autorandr; 46 maintainers = [ stdenv.lib.maintainers.coroa ]; 47 + platforms = stdenv.lib.platforms.unix; 48 }; 49 }
+1
pkgs/tools/misc/bibutils/default.nix
··· 21 homepage = "http://sourceforge.net/p/bibutils/home/Bibutils/"; 22 license = licenses.gpl2; 23 maintainers = [ maintainers.garrison ]; 24 }; 25 }
··· 21 homepage = "http://sourceforge.net/p/bibutils/home/Bibutils/"; 22 license = licenses.gpl2; 23 maintainers = [ maintainers.garrison ]; 24 + platforms = platforms.linux; 25 }; 26 }
+1
pkgs/tools/misc/bogofilter/default.nix
··· 22 filter. 23 ''; 24 license = stdenv.lib.licenses.gpl2; 25 }; 26 }
··· 22 filter. 23 ''; 24 license = stdenv.lib.licenses.gpl2; 25 + platforms = stdenv.lib.platforms.linux; 26 }; 27 }
+4
pkgs/tools/misc/cloud-utils/default.nix
··· 15 ''; 16 dontInstall = true; 17 dontPatchShebangs = true; 18 }
··· 15 ''; 16 dontInstall = true; 17 dontPatchShebangs = true; 18 + 19 + meta = { 20 + platforms = stdenv.lib.platforms.unix; 21 + }; 22 }
+5 -3
pkgs/tools/misc/cpuminer/default.nix
··· 1 - { stdenv, fetchurl, curl, jansson }: 2 3 stdenv.mkDerivation rec { 4 name = "cpuminer-${version}"; 5 - version = "2.4.4"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/cpuminer/pooler-${name}.tar.gz"; 9 - sha256 = "0xdgz5qlx1yr3mw2h4bwlbj94y6v2ygjy334cnc87xgzxf1wgann"; 10 }; 11 12 buildInputs = [ curl jansson ]; 13
··· 1 + { stdenv, fetchurl, curl, jansson, perl }: 2 3 stdenv.mkDerivation rec { 4 name = "cpuminer-${version}"; 5 + version = "2.4.5"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/cpuminer/pooler-${name}.tar.gz"; 9 + sha256 = "130ab6vcbm9azl9w8n97fzjnjbakm0k2n3wc1bcgy5y5c8s0220h"; 10 }; 11 + 12 + patchPhase = if stdenv.cc.isClang then "${perl}/bin/perl ./nomacro.pl" else null; 13 14 buildInputs = [ curl jansson ]; 15
+1
pkgs/tools/misc/cunit/default.nix
··· 20 homepage = http://cunit.sourceforge.net/; 21 22 license = stdenv.lib.licenses.lgpl2; 23 }; 24 }
··· 20 homepage = http://cunit.sourceforge.net/; 21 22 license = stdenv.lib.licenses.lgpl2; 23 + platforms = stdenv.lib.platforms.unix; 24 }; 25 }
+1
pkgs/tools/misc/cutecom/default.nix
··· 14 homepage = http://cutecom.sourceforge.net/; 15 license = stdenv.lib.licenses.gpl2Plus; 16 maintainers = [ stdenv.lib.maintainers.bennofs ]; 17 }; 18 }
··· 14 homepage = http://cutecom.sourceforge.net/; 15 license = stdenv.lib.licenses.gpl2Plus; 16 maintainers = [ stdenv.lib.maintainers.bennofs ]; 17 + platforms = stdenv.lib.platforms.unix; 18 }; 19 }
+1
pkgs/tools/misc/dbacl/default.nix
··· 12 longDescription = "a digramic Bayesian classifier for text recognition."; 13 maintainers = [ stdenv.lib.maintainers.garbas ]; 14 license = stdenv.lib.licenses.gpl3; 15 }; 16 }
··· 12 longDescription = "a digramic Bayesian classifier for text recognition."; 13 maintainers = [ stdenv.lib.maintainers.garbas ]; 14 license = stdenv.lib.licenses.gpl3; 15 + platforms = stdenv.lib.platforms.unix; 16 }; 17 }
+1
pkgs/tools/misc/debian-devscripts/default.nix
··· 59 description = ''Debian package maintenance scripts''; 60 license = licenses.free; # Mix of public domain, Artistic+GPL, GPL1+, GPL2+, GPL3+, and GPL2-only... TODO 61 maintainers = with maintainers; [raskin]; 62 }; 63 }
··· 59 description = ''Debian package maintenance scripts''; 60 license = licenses.free; # Mix of public domain, Artistic+GPL, GPL1+, GPL2+, GPL3+, and GPL2-only... TODO 61 maintainers = with maintainers; [raskin]; 62 + platforms = with platforms; linux; 63 }; 64 }
+1
pkgs/tools/misc/disper/default.nix
··· 22 meta = { 23 description = "On-the-fly display switch utility"; 24 homepage = http://willem.engen.nl/projects/disper/; 25 }; 26 27 }
··· 22 meta = { 23 description = "On-the-fly display switch utility"; 24 homepage = http://willem.engen.nl/projects/disper/; 25 + platforms = stdenv.lib.platforms.unix; 26 }; 27 28 }
+4
pkgs/tools/misc/dmg2img/default.nix
··· 14 mkdir -p $out/bin 15 cp dmg2img $out/bin 16 ''; 17 }
··· 14 mkdir -p $out/bin 15 cp dmg2img $out/bin 16 ''; 17 + 18 + meta = { 19 + platforms = stdenv.lib.platforms.unix; 20 + }; 21 }
+8 -8
pkgs/tools/misc/dvtm/default.nix
··· 4 5 name = "dvtm-0.15"; 6 7 - meta = with stdenv.lib; { 8 - description = "Dynamic virtual terminal manager"; 9 - homepage = http://www.brain-dump.org/projects/dvtm; 10 - license = licenses.mit; 11 - platfroms = platforms.linux; 12 - maintainers = [ maintainers.vrthra ]; 13 - }; 14 - 15 src = fetchurl { 16 url = "${meta.homepage}/${name}.tar.gz"; 17 sha256 = "0475w514b7i3gxk6khy8pfj2gx9l7lv2pwacmq92zn1abv01a84g"; ··· 31 installPhase = '' 32 make PREFIX=$out install 33 ''; 34 }
··· 4 5 name = "dvtm-0.15"; 6 7 src = fetchurl { 8 url = "${meta.homepage}/${name}.tar.gz"; 9 sha256 = "0475w514b7i3gxk6khy8pfj2gx9l7lv2pwacmq92zn1abv01a84g"; ··· 23 installPhase = '' 24 make PREFIX=$out install 25 ''; 26 + 27 + meta = with stdenv.lib; { 28 + description = "Dynamic virtual terminal manager"; 29 + homepage = http://www.brain-dump.org/projects/dvtm; 30 + license = licenses.mit; 31 + platforms = platforms.linux; 32 + maintainers = [ maintainers.vrthra ]; 33 + }; 34 }
+1
pkgs/tools/misc/emv/default.nix
··· 21 homepage = "http://www.i0i0.de/toolchest/emv"; 22 description = "Editor Move: Rename files with your favourite text editor"; 23 license = stdenv.lib.licenses.publicDomain; 24 }; 25 }
··· 21 homepage = "http://www.i0i0.de/toolchest/emv"; 22 description = "Editor Move: Rename files with your favourite text editor"; 23 license = stdenv.lib.licenses.publicDomain; 24 + platforms = stdenv.lib.platforms.unix; 25 }; 26 }
+1
pkgs/tools/misc/figlet/default.nix
··· 20 description = "Program for making large letters out of ordinary text"; 21 homepage = http://www.figlet.org/; 22 license = stdenv.lib.licenses.afl21; 23 }; 24 }
··· 20 description = "Program for making large letters out of ordinary text"; 21 homepage = http://www.figlet.org/; 22 license = stdenv.lib.licenses.afl21; 23 + platforms = stdenv.lib.platforms.unix; 24 }; 25 }
+4
pkgs/tools/misc/fondu/default.nix
··· 8 sha256 = "152prqad9jszjmm4wwqrq83zk13ypsz09n02nrk1gg0fcxfm7fr2"; 9 }; 10 makeFlags = "DESTDIR=$(out)"; 11 }
··· 8 sha256 = "152prqad9jszjmm4wwqrq83zk13ypsz09n02nrk1gg0fcxfm7fr2"; 9 }; 10 makeFlags = "DESTDIR=$(out)"; 11 + 12 + meta = { 13 + platforms = stdenv.lib.platforms.unix; 14 + }; 15 }
+1
pkgs/tools/misc/fortune/default.nix
··· 24 25 meta = { 26 description = "A program that displays a pseudorandom message from a database of quotations"; 27 }; 28 }
··· 24 25 meta = { 26 description = "A program that displays a pseudorandom message from a database of quotations"; 27 + platforms = stdenv.lib.platforms.unix; 28 }; 29 }
+4
pkgs/tools/misc/getopt/default.nix
··· 10 preBuild = '' 11 export buildFlags=CC="$CC" # for darwin 12 ''; 13 }
··· 10 preBuild = '' 11 export buildFlags=CC="$CC" # for darwin 12 ''; 13 + 14 + meta = { 15 + platforms = stdenv.lib.platforms.unix; 16 + }; 17 }
+1
pkgs/tools/misc/gnuvd/default.nix
··· 11 meta = { 12 description = "Command-line dutch dictionary application"; 13 homepage = http://www.djcbsoftware.nl/code/gnuvd/; 14 }; 15 }
··· 11 meta = { 12 description = "Command-line dutch dictionary application"; 13 homepage = http://www.djcbsoftware.nl/code/gnuvd/; 14 + platforms = stdenv.lib.platforms.unix; 15 }; 16 }
+1
pkgs/tools/misc/hdf5/default.nix
··· 53 applications for managing, manipulating, viewing, and analyzing data in the HDF5 format. 54 ''; 55 homepage = http://www.hdfgroup.org/HDF5/; 56 }; 57 }
··· 53 applications for managing, manipulating, viewing, and analyzing data in the HDF5 format. 54 ''; 55 homepage = http://www.hdfgroup.org/HDF5/; 56 + platforms = stdenv.lib.platforms.unix; 57 }; 58 }
+1
pkgs/tools/misc/heatseeker/default.nix
··· 24 homepage = https://github.com/rschmitt/heatseeker; 25 license = stdenv.lib.licenses.mit; 26 maintainers = [ maintainers.michaelpj ]; 27 }; 28 }
··· 24 homepage = https://github.com/rschmitt/heatseeker; 25 license = stdenv.lib.licenses.mit; 26 maintainers = [ maintainers.michaelpj ]; 27 + platforms = platforms.linux; 28 }; 29 }
+1
pkgs/tools/misc/heimdall/default.nix
··· 40 homepage = "http://www.glassechidna.com.au/products/heimdall/"; 41 description = "A cross-platform tool suite to flash firmware onto Samsung Galaxy S devices"; 42 license = stdenv.lib.licenses.mit; 43 }; 44 }
··· 40 homepage = "http://www.glassechidna.com.au/products/heimdall/"; 41 description = "A cross-platform tool suite to flash firmware onto Samsung Galaxy S devices"; 42 license = stdenv.lib.licenses.mit; 43 + platforms = stdenv.lib.platforms.linux; 44 }; 45 }
+1
pkgs/tools/misc/kermit/default.nix
··· 34 description = "Portable Scriptable Network and Serial Communication Software"; 35 license = licenses.bsd3; 36 maintainers = with maintainers; [ pSub ]; 37 }; 38 }
··· 34 description = "Portable Scriptable Network and Serial Communication Software"; 35 license = licenses.bsd3; 36 maintainers = with maintainers; [ pSub ]; 37 + platforms = with platforms; linux; 38 }; 39 }
+1
pkgs/tools/misc/man/default.nix
··· 45 meta = { 46 homepage = http://primates.ximian.com/~flucifredi/man/; 47 description = "Tool to read online Unix documentation"; 48 }; 49 }
··· 45 meta = { 46 homepage = http://primates.ximian.com/~flucifredi/man/; 47 description = "Tool to read online Unix documentation"; 48 + platforms = stdenv.lib.platforms.unix; 49 }; 50 }
+1
pkgs/tools/misc/mc/default.nix
··· 18 repositories.git = git://github.com/MidnightCommander/mc.git; 19 license = stdenv.lib.licenses.gpl2Plus; 20 maintainers = [ stdenv.lib.maintainers.sander ]; 21 }; 22 }
··· 18 repositories.git = git://github.com/MidnightCommander/mc.git; 19 license = stdenv.lib.licenses.gpl2Plus; 20 maintainers = [ stdenv.lib.maintainers.sander ]; 21 + platforms = stdenv.lib.platforms.linux; 22 }; 23 }
+1
pkgs/tools/misc/mdbtools/default.nix
··· 16 17 meta = { 18 description = ".mdb (MS Access) format tools"; 19 }; 20 }
··· 16 17 meta = { 18 description = ".mdb (MS Access) format tools"; 19 + platforms = stdenv.lib.platforms.unix; 20 }; 21 }
+1
pkgs/tools/misc/mdbtools/git.nix
··· 27 28 meta = { 29 description = ".mdb (MS Access) format tools"; 30 }; 31 }
··· 27 28 meta = { 29 description = ".mdb (MS Access) format tools"; 30 + platforms = stdenv.lib.platforms.linux; 31 }; 32 }
+1
pkgs/tools/misc/memtest86+/default.nix
··· 36 homepage = http://www.memtest.org/; 37 description = "A tool to detect memory errors"; 38 license = stdenv.lib.licenses.gpl2; 39 }; 40 }
··· 36 homepage = http://www.memtest.org/; 37 description = "A tool to detect memory errors"; 38 license = stdenv.lib.licenses.gpl2; 39 + platforms = stdenv.lib.platforms.linux; 40 }; 41 }
+1
pkgs/tools/misc/mmv/default.nix
··· 42 homepage = "http://linux.maruhn.com/sec/mmv.html"; 43 description = "Utility for wildcard renaming, copying, etc"; 44 license = stdenv.lib.licenses.gpl2; 45 }; 46 }
··· 42 homepage = "http://linux.maruhn.com/sec/mmv.html"; 43 description = "Utility for wildcard renaming, copying, etc"; 44 license = stdenv.lib.licenses.gpl2; 45 + platforms = stdenv.lib.platforms.linux; 46 }; 47 }
+1
pkgs/tools/misc/mpdscribble/default.nix
··· 22 homepage = http://mpd.wikia.com/wiki/Client:mpdscribble; 23 license = licenses.gpl2; 24 maintainers = [ maintainers.matthiasbeyer ]; 25 }; 26 }
··· 22 homepage = http://mpd.wikia.com/wiki/Client:mpdscribble; 23 license = licenses.gpl2; 24 maintainers = [ maintainers.matthiasbeyer ]; 25 + platforms = platforms.linux; 26 }; 27 }
+2 -1
pkgs/tools/misc/mrtg/default.nix
··· 19 homepage = http://oss.oetiker.ch/mrtg/; 20 license = stdenv.lib.licenses.gpl2; 21 maintainers = [ stdenv.lib.maintainers.robberer ]; 22 - }; 23 }
··· 19 homepage = http://oss.oetiker.ch/mrtg/; 20 license = stdenv.lib.licenses.gpl2; 21 maintainers = [ stdenv.lib.maintainers.robberer ]; 22 + platforms = stdenv.lib.platforms.unix; 23 + }; 24 }
+1
pkgs/tools/misc/ms-sys/default.nix
··· 20 homepage = http://ms-sys.sourceforge.net/; 21 license = licenses.gpl2Plus; 22 maintainers = with maintainers; [ nckx ]; 23 }; 24 }
··· 20 homepage = http://ms-sys.sourceforge.net/; 21 license = licenses.gpl2Plus; 22 maintainers = with maintainers; [ nckx ]; 23 + platforms = with platforms; linux; 24 }; 25 }
+1
pkgs/tools/misc/mysql2pgsql/default.nix
··· 20 description = "Convert MySQL dump files to PostgreSQL-loadable files"; 21 homepage = http://pgfoundry.org/projects/mysql2pgsql/; 22 license = stdenv.lib.licenses.bsdOriginal; 23 }; 24 }
··· 20 description = "Convert MySQL dump files to PostgreSQL-loadable files"; 21 homepage = http://pgfoundry.org/projects/mysql2pgsql/; 22 license = stdenv.lib.licenses.bsdOriginal; 23 + platforms = stdenv.lib.platforms.unix; 24 }; 25 }
+1
pkgs/tools/misc/plowshare/default.nix
··· 30 ''; 31 license = stdenv.lib.licenses.gpl3; 32 maintainers = [ stdenv.lib.maintainers.aforemny ]; 33 }; 34 }
··· 30 ''; 31 license = stdenv.lib.licenses.gpl3; 32 maintainers = [ stdenv.lib.maintainers.aforemny ]; 33 + platforms = stdenv.lib.platforms.linux; 34 }; 35 }
+1
pkgs/tools/misc/ponysay/default.nix
··· 29 homepage = http://terse.tk/ponysay/; 30 license = stdenv.lib.licenses.gpl3; 31 maintainers = with stdenv.lib.maintainers; [ bodil ]; 32 }; 33 }
··· 29 homepage = http://terse.tk/ponysay/; 30 license = stdenv.lib.licenses.gpl3; 31 maintainers = with stdenv.lib.maintainers; [ bodil ]; 32 + platforms = with stdenv.lib.platforms; unix; 33 }; 34 }
+1
pkgs/tools/misc/proxytunnel/default.nix
··· 16 description = "Program that connects stdin and stdout to a server somewhere on the network, through a standard HTTPS proxy"; 17 homepage = http://proxytunnel.sourceforge.net/download.php; 18 license = stdenv.lib.licenses.gpl2; 19 }; 20 }
··· 16 description = "Program that connects stdin and stdout to a server somewhere on the network, through a standard HTTPS proxy"; 17 homepage = http://proxytunnel.sourceforge.net/download.php; 18 license = stdenv.lib.licenses.gpl2; 19 + platforms = stdenv.lib.platforms.linux; 20 }; 21 }
+1
pkgs/tools/misc/rcm/default.nix
··· 21 homepage = https://github.com/thoughtbot/rcm; 22 license = licenses.bsd3; 23 maintainers = with maintainers; [ malyn ]; 24 }; 25 }
··· 21 homepage = https://github.com/thoughtbot/rcm; 22 license = licenses.bsd3; 23 maintainers = with maintainers; [ malyn ]; 24 + platforms = with platforms; unix; 25 }; 26 }
+1
pkgs/tools/misc/renameutils/default.nix
··· 15 meta = { 16 homepage = http://www.nongnu.org/renameutils/; 17 description = "A set of programs to make renaming of files faster"; 18 }; 19 }
··· 15 meta = { 16 homepage = http://www.nongnu.org/renameutils/; 17 description = "A set of programs to make renaming of files faster"; 18 + platforms = stdenv.lib.platforms.unix; 19 }; 20 }
+1
pkgs/tools/misc/slsnif/default.nix
··· 12 description = "Serial line sniffer"; 13 homepage = http://slsnif.sourceforge.net/; 14 license = stdenv.lib.licenses.gpl2; 15 }; 16 }
··· 12 description = "Serial line sniffer"; 13 homepage = http://slsnif.sourceforge.net/; 14 license = stdenv.lib.licenses.gpl2; 15 + platforms = stdenv.lib.platforms.linux; 16 }; 17 }
+1
pkgs/tools/misc/time/default.nix
··· 29 30 license = stdenv.lib.licenses.gpl2Plus; 31 homepage = http://www.gnu.org/software/time/; 32 }; 33 }
··· 29 30 license = stdenv.lib.licenses.gpl2Plus; 31 homepage = http://www.gnu.org/software/time/; 32 + platforms = stdenv.lib.platforms.unix; 33 }; 34 }
+1
pkgs/tools/misc/timidity/default.nix
··· 60 license = licenses.gpl2; 61 description = "A software MIDI renderer"; 62 maintainers = [ maintainers.marcweber ]; 63 }; 64 }
··· 60 license = licenses.gpl2; 61 description = "A software MIDI renderer"; 62 maintainers = [ maintainers.marcweber ]; 63 + platforms = platforms.linux; 64 }; 65 }
+1
pkgs/tools/misc/ttf2pt1/default.nix
··· 27 description = "True Type to Postscript Type 3 converter, fpdf"; 28 homepage = "http://ttf2pt1.sourceforge.net/index.html"; 29 license = "ttf2pt1"; 30 }; 31 }
··· 27 description = "True Type to Postscript Type 3 converter, fpdf"; 28 homepage = "http://ttf2pt1.sourceforge.net/index.html"; 29 license = "ttf2pt1"; 30 + platforms = stdenv.lib.platforms.linux; 31 }; 32 }
+1
pkgs/tools/misc/ttmkfdir/default.nix
··· 27 28 meta = { 29 description = "Create fonts.dir for TTF font directory"; 30 }; 31 }
··· 27 28 meta = { 29 description = "Create fonts.dir for TTF font directory"; 30 + platforms = stdenv.lib.platforms.linux; 31 }; 32 }
+1
pkgs/tools/misc/wv/default.nix
··· 17 18 meta = { 19 description = "Converter from Microsoft Word formats to human-editable ones"; 20 }; 21 }
··· 17 18 meta = { 19 description = "Converter from Microsoft Word formats to human-editable ones"; 20 + platforms = stdenv.lib.platforms.unix; 21 }; 22 }
+1
pkgs/tools/misc/xapian-omega/default.nix
··· 15 description = "Indexer and CGI search front-end built on Xapian library"; 16 homepage = http://xapian.org/; 17 license = licenses.gpl2Plus; 18 }; 19 }
··· 15 description = "Indexer and CGI search front-end built on Xapian library"; 16 homepage = http://xapian.org/; 17 license = licenses.gpl2Plus; 18 + platforms = platforms.unix; 19 }; 20 }
+4
pkgs/tools/misc/xsel/default.nix
··· 8 }; 9 10 buildInputs = [xlibsWrapper]; 11 }
··· 8 }; 9 10 buildInputs = [xlibsWrapper]; 11 + 12 + meta = { 13 + platforms = stdenv.lib.platforms.unix; 14 + }; 15 }
+4
pkgs/tools/misc/xvfb-run/default.nix
··· 20 --set FONTCONFIG_FILE "${fontsConf}" \ 21 --prefix PATH : ${stdenv.lib.makeBinPath [ getopt xorgserver xauth which utillinux gawk coreutils ]} 22 ''; 23 }
··· 20 --set FONTCONFIG_FILE "${fontsConf}" \ 21 --prefix PATH : ${stdenv.lib.makeBinPath [ getopt xorgserver xauth which utillinux gawk coreutils ]} 22 ''; 23 + 24 + meta = { 25 + platforms = stdenv.lib.platforms.linux; 26 + }; 27 }
+1
pkgs/tools/misc/yank/default.nix
··· 30 license = licenses.mit; 31 version = "0.7.0"; 32 maintainers = [ maintainers.dochang ]; 33 }; 34 35 }
··· 30 license = licenses.mit; 31 version = "0.7.0"; 32 maintainers = [ maintainers.dochang ]; 33 + platforms = platforms.unix; 34 }; 35 36 }
+1
pkgs/tools/misc/zsh-navigation-tools/default.nix
··· 27 homepage = https://github.com/psprint/zsh-navigation-tools; 28 license = licenses.gpl3; 29 maintainers = with maintainers; [ pSub ]; 30 }; 31 }
··· 27 homepage = https://github.com/psprint/zsh-navigation-tools; 28 license = licenses.gpl3; 29 maintainers = with maintainers; [ pSub ]; 30 + platforms = with platforms; unix; 31 }; 32 }
+1
pkgs/tools/networking/ahcpd/default.nix
··· 17 homepage = "http://www.pps.univ-paris-diderot.fr/~jch/software/ahcp/"; 18 description = "Autoconfiguration protocol for IPv6 and dual-stack IPv6/IPv4 networks"; 19 license = stdenv.lib.licenses.mit; 20 }; 21 }
··· 17 homepage = "http://www.pps.univ-paris-diderot.fr/~jch/software/ahcp/"; 18 description = "Autoconfiguration protocol for IPv6 and dual-stack IPv6/IPv4 networks"; 19 license = stdenv.lib.licenses.mit; 20 + platforms = stdenv.lib.platforms.linux; 21 }; 22 }
+1
pkgs/tools/networking/aiccu/default.nix
··· 37 ''; 38 maintainers = with maintainers; [ edwtjo ]; 39 license = "SixXS"; 40 }; 41 42 }
··· 37 ''; 38 maintainers = with maintainers; [ edwtjo ]; 39 license = "SixXS"; 40 + platforms = with platforms; linux; 41 }; 42 43 }
+1
pkgs/tools/networking/asynk/default.nix
··· 42 description = "Flexible contacts synchronization program"; 43 license = licenses.agpl3; 44 maintainers = [ maintainers.DamienCassou ]; 45 }; 46 }
··· 42 description = "Flexible contacts synchronization program"; 43 license = licenses.agpl3; 44 maintainers = [ maintainers.DamienCassou ]; 45 + platforms = platforms.unix; 46 }; 47 }
+1
pkgs/tools/networking/babeld/default.nix
··· 17 description = "Loop-avoiding distance-vector routing protocol"; 18 license = stdenv.lib.licenses.mit; 19 maintainers = with stdenv.lib.maintainers; [ fuuzetsu fpletz ]; 20 }; 21 }
··· 17 description = "Loop-avoiding distance-vector routing protocol"; 18 license = stdenv.lib.licenses.mit; 19 maintainers = with stdenv.lib.maintainers; [ fuuzetsu fpletz ]; 20 + platforms = with stdenv.lib.platforms; linux; 21 }; 22 }
+4
pkgs/tools/networking/bsd-finger/default.nix
··· 17 preBuild = "cd finger"; 18 19 preInstall = '' mkdir -p $out/man/man1 $out/bin ''; 20 }
··· 17 preBuild = "cd finger"; 18 19 preInstall = '' mkdir -p $out/man/man1 $out/bin ''; 20 + 21 + meta = { 22 + platforms = stdenv.lib.platforms.linux; 23 + }; 24 }
+1
pkgs/tools/networking/bully/default.nix
··· 26 homepage = https://github.com/Lrs121/bully; 27 maintainers = [ stdenv.lib.maintainers.edwtjo ]; 28 license = stdenv.lib.licenses.gpl3; 29 }; 30 }
··· 26 homepage = https://github.com/Lrs121/bully; 27 maintainers = [ stdenv.lib.maintainers.edwtjo ]; 28 license = stdenv.lib.licenses.gpl3; 29 + platforms = stdenv.lib.platforms.linux; 30 }; 31 }
+1
pkgs/tools/networking/carddav-util/default.nix
··· 34 meta = { 35 homepage = https://github.com/ljanyst/carddav-util; 36 description = "A CardDAV import/export utility"; 37 }; 38 }
··· 34 meta = { 35 homepage = https://github.com/ljanyst/carddav-util; 36 description = "A CardDAV import/export utility"; 37 + platforms = stdenv.lib.platforms.unix; 38 }; 39 }
+1
pkgs/tools/networking/corkscrew/default.nix
··· 17 homepage = http://agroman.net/corkscrew/; 18 description = "A tool for tunneling SSH through HTTP proxies"; 19 license = stdenv.lib.licenses.gpl2; 20 }; 21 }
··· 17 homepage = http://agroman.net/corkscrew/; 18 description = "A tool for tunneling SSH through HTTP proxies"; 19 license = stdenv.lib.licenses.gpl2; 20 + platforms = platforms.unix; 21 }; 22 }
+1
pkgs/tools/networking/darkstat/default.nix
··· 27 homepage = http://unix4lyfe.org/darkstat; 28 license = licenses.gpl2; 29 maintainers = with maintainers; [ nckx ]; 30 }; 31 }
··· 27 homepage = http://unix4lyfe.org/darkstat; 28 license = licenses.gpl2; 29 maintainers = with maintainers; [ nckx ]; 30 + platforms = with platforms; unix; 31 }; 32 }
+1
pkgs/tools/networking/dnstop/default.nix
··· 18 description = "libpcap application that displays DNS traffic on your network"; 19 homepage = http://dns.measurement-factory.com/tools/dnstop; 20 license = stdenv.lib.licenses.bsd3; 21 }; 22 }
··· 18 description = "libpcap application that displays DNS traffic on your network"; 19 homepage = http://dns.measurement-factory.com/tools/dnstop; 20 license = stdenv.lib.licenses.bsd3; 21 + platforms = stdenv.lib.platforms.unix; 22 }; 23 }
+2 -1
pkgs/tools/networking/email/default.nix
··· 36 description = "Command line SMTP client"; 37 license = with lib.licenses; [ gpl2 ]; 38 homepage = http://deanproxy.com/code; 39 }; 40 - }
··· 36 description = "Command line SMTP client"; 37 license = with lib.licenses; [ gpl2 ]; 38 homepage = http://deanproxy.com/code; 39 + platforms = stdenv.lib.platforms.unix; 40 }; 41 + }
+1
pkgs/tools/networking/gftp/default.nix
··· 14 description = "GTK+-based FTP client"; 15 homepage = http://www.gftp.org; 16 license = stdenv.lib.licenses.gpl2Plus; 17 }; 18 }
··· 14 description = "GTK+-based FTP client"; 15 homepage = http://www.gftp.org; 16 license = stdenv.lib.licenses.gpl2Plus; 17 + platforms = stdenv.lib.platforms.unix; 18 }; 19 }
+1
pkgs/tools/networking/imapproxy/default.nix
··· 17 homepage = http://imapproxy.org/; 18 description = "It proxies IMAP transactions caching server connections"; 19 license = stdenv.lib.licenses.gpl2Plus; 20 }; 21 }
··· 17 homepage = http://imapproxy.org/; 18 description = "It proxies IMAP transactions caching server connections"; 19 license = stdenv.lib.licenses.gpl2Plus; 20 + platforms = stdenv.lib.platforms.unix; 21 }; 22 }
+1
pkgs/tools/networking/jnettop/default.nix
··· 24 25 homepage = http://jnettop.kubs.info/; 26 license = stdenv.lib.licenses.gpl2Plus; 27 }; 28 }
··· 24 25 homepage = http://jnettop.kubs.info/; 26 license = stdenv.lib.licenses.gpl2Plus; 27 + platforms = stdenv.lib.platforms.unix; 28 }; 29 }
+1
pkgs/tools/networking/maildrop/default.nix
··· 16 homepage = http://www.courier-mta.org/maildrop/; 17 description = "Mail filter/mail delivery agent that is used by the Courier Mail Server"; 18 license = licenses.gpl3; 19 }; 20 }
··· 16 homepage = http://www.courier-mta.org/maildrop/; 17 description = "Mail filter/mail delivery agent that is used by the Courier Mail Server"; 18 license = licenses.gpl3; 19 + platforms = platforms.linux; 20 }; 21 }
+1
pkgs/tools/networking/netcat/default.nix
··· 12 description = "Utility which reads and writes data across network connections"; 13 homepage = http://netcat.sourceforge.net/; 14 license = licenses.gpl2Plus; 15 }; 16 }
··· 12 description = "Utility which reads and writes data across network connections"; 13 homepage = http://netcat.sourceforge.net/; 14 license = licenses.gpl2Plus; 15 + platforms = platforms.unix; 16 }; 17 }
+1
pkgs/tools/networking/netrw/default.nix
··· 30 description = "Simple tool for transporting data over the network"; 31 license = stdenv.lib.licenses.gpl2; 32 homepage = "http://mamuti.net/netrw/index.en.html"; 33 }; 34 }
··· 30 description = "Simple tool for transporting data over the network"; 31 license = stdenv.lib.licenses.gpl2; 32 homepage = "http://mamuti.net/netrw/index.en.html"; 33 + platforms = stdenv.lib.platforms.unix; 34 }; 35 }
+1
pkgs/tools/networking/netselect/default.nix
··· 17 homepage = http://alumnit.ca/~apenwarr/netselect/; 18 description = "An ultrafast intelligent parallelizing binary-search implementation of \"ping\""; 19 license = "BSD"; 20 }; 21 }
··· 17 homepage = http://alumnit.ca/~apenwarr/netselect/; 18 description = "An ultrafast intelligent parallelizing binary-search implementation of \"ping\""; 19 license = "BSD"; 20 + platforms = stdenv.lib.platforms.linux; 21 }; 22 }
+1
pkgs/tools/networking/noip/default.nix
··· 22 homepage = http://noip.com/download?page=linux; 23 license = stdenv.lib.licenses.gpl2; 24 maintainers = [ stdenv.lib.maintainers.iand675 ]; 25 }; 26 }
··· 22 homepage = http://noip.com/download?page=linux; 23 license = stdenv.lib.licenses.gpl2; 24 maintainers = [ stdenv.lib.maintainers.iand675 ]; 25 + platforms = platforms.linux; 26 }; 27 }
+1
pkgs/tools/networking/nss-pam-ldapd/default.nix
··· 30 description = "LDAP identity and authentication for NSS/PAM"; 31 homepage = http://arthurdejong.org/nss-pam-ldapd/; 32 license = licenses.lgpl21; 33 }; 34 }
··· 30 description = "LDAP identity and authentication for NSS/PAM"; 31 homepage = http://arthurdejong.org/nss-pam-ldapd/; 32 license = licenses.lgpl21; 33 + platforms = platforms.linux; 34 }; 35 }
+1 -1
pkgs/tools/networking/nylon/default.nix
··· 24 description = "Proxy server, supporting SOCKS 4 and 5, as well as a mirror mode"; 25 license = licenses.bsdOriginal; 26 maintainers = with maintainers; [ edwtjo viric ]; 27 - platform = platforms.linux; 28 }; 29 }
··· 24 description = "Proxy server, supporting SOCKS 4 and 5, as well as a mirror mode"; 25 license = licenses.bsdOriginal; 26 maintainers = with maintainers; [ edwtjo viric ]; 27 + platforms = platforms.linux; 28 }; 29 }
+1
pkgs/tools/networking/nzbget/default.nix
··· 21 license = licenses.gpl2Plus; 22 description = "A command line tool for downloading files from news servers"; 23 maintainers = with maintainers; [ pSub ]; 24 }; 25 }
··· 21 license = licenses.gpl2Plus; 22 description = "A command line tool for downloading files from news servers"; 23 maintainers = with maintainers; [ pSub ]; 24 + platforms = with platforms; unix; 25 }; 26 }
+4
pkgs/tools/networking/openconnect.nix
··· 30 31 buildInputs = [ pkgconfig ]; 32 propagatedBuildInputs = [ vpnc openssl gnutls libxml2 zlib ]; 33 }
··· 30 31 buildInputs = [ pkgconfig ]; 32 propagatedBuildInputs = [ vpnc openssl gnutls libxml2 zlib ]; 33 + 34 + meta = { 35 + platforms = stdenv.lib.platforms.linux; 36 + }; 37 }
+4
pkgs/tools/networking/p2p/azureus/default.nix
··· 9 }; 10 # buildInputs = [unzip]; 11 inherit jdk swt; 12 }
··· 9 }; 10 # buildInputs = [unzip]; 11 inherit jdk swt; 12 + 13 + meta = { 14 + platforms = stdenv.lib.platforms.linux; 15 + }; 16 }
+1
pkgs/tools/networking/p2p/gtk-gnutella/default.nix
··· 22 homepage = http://gtk-gnutella.sourceforge.net/; 23 description = "Server/client for Gnutella"; 24 license = licenses.gpl2; 25 }; 26 }
··· 22 homepage = http://gtk-gnutella.sourceforge.net/; 23 description = "Server/client for Gnutella"; 24 license = licenses.gpl2; 25 + platforms = platforms.unix; 26 }; 27 }
+8 -7
pkgs/tools/networking/pcapfix/default.nix
··· 10 11 postPatch = ''sed -i "s|/usr|$out|" Makefile''; 12 13 - meta = with stdenv.lib; 14 - { homepage = "https://f00l.de/pcapfix/"; 15 - description = "Repair your broken pcap and pcapng files"; 16 - license = licenses.gpl3; 17 - maintainers = [ maintainers.ehmry ]; 18 - }; 19 - }
··· 10 11 postPatch = ''sed -i "s|/usr|$out|" Makefile''; 12 13 + meta = with stdenv.lib; { 14 + homepage = "https://f00l.de/pcapfix/"; 15 + description = "Repair your broken pcap and pcapng files"; 16 + license = licenses.gpl3; 17 + maintainers = [ maintainers.ehmry ]; 18 + platforms = platforms.linux; 19 + }; 20 + }
+1 -1
pkgs/tools/networking/pdsh/default.nix
··· 47 while timeouts occur on some connections. 48 ''; 49 50 - hydraPlatforms = stdenv.lib.platforms.linux; 51 maintainers = [ stdenv.lib.maintainers.peti ]; 52 }; 53 }
··· 47 while timeouts occur on some connections. 48 ''; 49 50 + platforms = stdenv.lib.platforms.linux; 51 maintainers = [ stdenv.lib.maintainers.peti ]; 52 }; 53 }
+1
pkgs/tools/networking/samplicator/default.nix
··· 13 description = "Send copies of (UDP) datagrams to multiple receivers"; 14 homepage = "http://code.google.com/p/samplicator/"; 15 license = stdenv.lib.licenses.gpl2Plus; 16 }; 17 }
··· 13 description = "Send copies of (UDP) datagrams to multiple receivers"; 14 homepage = "http://code.google.com/p/samplicator/"; 15 license = stdenv.lib.licenses.gpl2Plus; 16 + platforms = stdenv.lib.platforms.unix; 17 }; 18 }
+1
pkgs/tools/networking/sipsak/default.nix
··· 22 description = "SIP Swiss army knife"; 23 license = stdenv.lib.licenses.gpl2; 24 maintainers = with maintainers; [ sheenobu ]; 25 }; 26 27 }
··· 22 description = "SIP Swiss army knife"; 23 license = stdenv.lib.licenses.gpl2; 24 maintainers = with maintainers; [ sheenobu ]; 25 + platforms = with platforms; unix; 26 }; 27 28 }
+1
pkgs/tools/networking/slimrat/default.nix
··· 27 homepage = http://code.google.com/p/slimrat/; 28 description = "Linux Rapidshare downloader"; 29 license = stdenv.lib.licenses.mit; 30 }; 31 }
··· 27 homepage = http://code.google.com/p/slimrat/; 28 description = "Linux Rapidshare downloader"; 29 license = stdenv.lib.licenses.mit; 30 + platforms = stdenv.lib.platforms.unix; 31 }; 32 }
+1
pkgs/tools/networking/smbldaptools/default.nix
··· 27 homepage = http://gna.org/projects/smbldap-tools/; 28 description = "SAMBA LDAP tools"; 29 license = stdenv.lib.licenses.gpl2Plus; 30 }; 31 }
··· 27 homepage = http://gna.org/projects/smbldap-tools/; 28 description = "SAMBA LDAP tools"; 29 license = stdenv.lib.licenses.gpl2Plus; 30 + platforms = stdenv.lib.platforms.unix; 31 }; 32 }
+1
pkgs/tools/networking/ssh-ident/default.nix
··· 23 description = "Start and use ssh-agent and load identities as necessary"; 24 license = stdenv.lib.licenses.bsd2; 25 maintainers = with stdenv.lib.maintainers; [ telotortium ]; 26 }; 27 }
··· 23 description = "Start and use ssh-agent and load identities as necessary"; 24 license = stdenv.lib.licenses.bsd2; 25 maintainers = with stdenv.lib.maintainers; [ telotortium ]; 26 + platforms = with stdenv.lib.platforms; unix; 27 }; 28 }
+4
pkgs/tools/networking/ssmtp/default.nix
··· 26 installTargets = [ "install" "install-sendmail" ]; 27 28 buildInputs = stdenv.lib.optional tlsSupport openssl; 29 }
··· 26 installTargets = [ "install" "install-sendmail" ]; 27 28 buildInputs = stdenv.lib.optional tlsSupport openssl; 29 + 30 + meta = { 31 + platforms = stdenv.lib.platforms.linux; 32 + }; 33 }
+1
pkgs/tools/networking/swec/default.nix
··· 70 license = stdenv.lib.licenses.gpl3Plus; 71 72 maintainers = [ ]; 73 }; 74 }
··· 70 license = stdenv.lib.licenses.gpl3Plus; 71 72 maintainers = [ ]; 73 + platforms = stdenv.lib.platforms.linux; 74 }; 75 }
+1
pkgs/tools/networking/tinc/default.nix
··· 26 ''; 27 homepage="http://www.tinc-vpn.org/"; 28 license = stdenv.lib.licenses.gpl2Plus; 29 }; 30 }
··· 26 ''; 27 homepage="http://www.tinc-vpn.org/"; 28 license = stdenv.lib.licenses.gpl2Plus; 29 + platforms = stdenv.lib.platforms.unix; 30 }; 31 }
+1
pkgs/tools/networking/vde2/default.nix
··· 15 meta = { 16 homepage = http://vde.sourceforge.net/; 17 description = "Virtual Distributed Ethernet, an Ethernet compliant virtual network"; 18 }; 19 }
··· 15 meta = { 16 homepage = http://vde.sourceforge.net/; 17 description = "Virtual Distributed Ethernet, an Ethernet compliant virtual network"; 18 + platforms = stdenv.lib.platforms.unix; 19 }; 20 }
+1
pkgs/tools/networking/vlan/default.nix
··· 25 26 meta = { 27 description = "User mode programs to enable VLANs on Ethernet devices"; 28 }; 29 }
··· 25 26 meta = { 27 description = "User mode programs to enable VLANs on Ethernet devices"; 28 + platforms = stdenv.lib.platforms.linux; 29 }; 30 }
+1
pkgs/tools/networking/wbox/default.nix
··· 17 description = "A simple HTTP benchmarking tool"; 18 homepage = "http://www.hping.org/wbox/"; 19 license = stdenv.lib.licenses.bsd3; 20 }; 21 }
··· 17 description = "A simple HTTP benchmarking tool"; 18 homepage = "http://www.hping.org/wbox/"; 19 license = stdenv.lib.licenses.bsd3; 20 + platforms = stdenv.lib.platforms.unix; 21 }; 22 }
+4
pkgs/tools/networking/webalizer/default.nix
··· 17 buildInputs = [zlib libpng gd geoip db]; 18 19 configureFlags = "--enable-dns --enable-geoip --disable-static --enable-shared"; 20 }
··· 17 buildInputs = [zlib libpng gd geoip db]; 18 19 configureFlags = "--enable-dns --enable-geoip --disable-static --enable-shared"; 20 + 21 + meta = { 22 + platforms = stdenv.lib.platforms.unix; 23 + }; 24 }
+4
pkgs/tools/networking/weighttp/default.nix
··· 15 python waf build 16 python waf install 17 ''; 18 }
··· 15 python waf build 16 python waf install 17 ''; 18 + 19 + meta = { 20 + platforms = stdenv.lib.platforms.unix; 21 + }; 22 }
+1
pkgs/tools/networking/wicd/default.nix
··· 115 ''; 116 maintainers = [ maintainers.roconnor ]; 117 license = licenses.gpl2; 118 }; 119 }
··· 115 ''; 116 maintainers = [ maintainers.roconnor ]; 117 license = licenses.gpl2; 118 + platforms = platforms.linux; 119 }; 120 }
+1
pkgs/tools/package-management/disnix/DisnixWebService/default.nix
··· 23 description = "A SOAP interface and client for Disnix"; 24 license = stdenv.lib.licenses.mit; 25 maintainers = [ stdenv.lib.maintainers.sander ]; 26 }; 27 }
··· 23 description = "A SOAP interface and client for Disnix"; 24 license = stdenv.lib.licenses.mit; 25 maintainers = [ stdenv.lib.maintainers.sander ]; 26 + platforms = stdenv.lib.platforms.linux; 27 }; 28 }
+1
pkgs/tools/package-management/disnix/default.nix
··· 16 description = "A Nix-based distributed service deployment tool"; 17 license = stdenv.lib.licenses.lgpl21Plus; 18 maintainers = [ stdenv.lib.maintainers.sander ]; 19 }; 20 }
··· 16 description = "A Nix-based distributed service deployment tool"; 17 license = stdenv.lib.licenses.lgpl21Plus; 18 maintainers = [ stdenv.lib.maintainers.sander ]; 19 + platforms = stdenv.lib.platforms.linux; 20 }; 21 }
+1
pkgs/tools/package-management/disnix/disnixos/default.nix
··· 16 description = "Provides complementary NixOS infrastructure deployment to Disnix"; 17 license = stdenv.lib.licenses.lgpl21Plus; 18 maintainers = [ stdenv.lib.maintainers.sander ]; 19 }; 20 }
··· 16 description = "Provides complementary NixOS infrastructure deployment to Disnix"; 17 license = stdenv.lib.licenses.lgpl21Plus; 18 maintainers = [ stdenv.lib.maintainers.sander ]; 19 + platforms = stdenv.lib.platforms.linux; 20 }; 21 }
+1
pkgs/tools/package-management/disnix/dysnomia/default.nix
··· 52 description = "Automated deployment of mutable components and services for Disnix"; 53 license = stdenv.lib.licenses.mit; 54 maintainers = [ stdenv.lib.maintainers.sander ]; 55 }; 56 }
··· 52 description = "Automated deployment of mutable components and services for Disnix"; 53 license = stdenv.lib.licenses.mit; 54 maintainers = [ stdenv.lib.maintainers.sander ]; 55 + platforms = stdenv.lib.platforms.unix; 56 }; 57 }
+4 -1
pkgs/tools/package-management/koji/default.nix
··· 17 rm -rf $out/nix 18 ''; 19 20 - meta.maintainers = [ stdenv.lib.maintainers.mornfall ]; 21 }
··· 17 rm -rf $out/nix 18 ''; 19 20 + meta = { 21 + maintainers = [ stdenv.lib.maintainers.mornfall ]; 22 + platforms = stdenv.lib.platforms.linux; 23 + }; 24 }
+1
pkgs/tools/security/bmrsa/11.nix
··· 24 description = "RSA utility"; 25 homepage = http://bmrsa.sourceforge.net/; 26 license = licenses.gpl1; 27 }; 28 }
··· 24 description = "RSA utility"; 25 homepage = http://bmrsa.sourceforge.net/; 26 license = licenses.gpl1; 27 + platforms = platforms.linux; 28 }; 29 }
+1
pkgs/tools/security/chntpw/default.nix
··· 27 description = "An utility to reset the password of any user that has a valid local account on a Windows system"; 28 maintainers = with stdenv.lib.maintainers; [ deepfire ]; 29 license = licenses.gpl2; 30 }; 31 }
··· 27 description = "An utility to reset the password of any user that has a valid local account on a Windows system"; 28 maintainers = with stdenv.lib.maintainers; [ deepfire ]; 29 license = licenses.gpl2; 30 + platforms = with stdenv.lib.platforms; linux; 31 }; 32 }
+4
pkgs/tools/security/dirmngr/default.nix
··· 7 sha256 = "1zz6m87ca55nq5f59hzm6qs48d37h93il881y7d0rf2d6660na6j"; 8 }; 9 buildInputs = [ libgpgerror libgcrypt libassuan libksba pth openldap ]; 10 }
··· 7 sha256 = "1zz6m87ca55nq5f59hzm6qs48d37h93il881y7d0rf2d6660na6j"; 8 }; 9 buildInputs = [ libgpgerror libgcrypt libassuan libksba pth openldap ]; 10 + 11 + meta = { 12 + platforms = stdenv.lib.platforms.linux; 13 + }; 14 }
+4
pkgs/tools/security/gnupg/1compat.nix
··· 17 ${coreutils}/bin/ln -s gpg2 $out/bin/gpg 18 ${coreutils}/bin/ln -s gpgv2 $out/bin/gpgv 19 ''; 20 }
··· 17 ${coreutils}/bin/ln -s gpg2 $out/bin/gpg 18 ${coreutils}/bin/ln -s gpgv2 $out/bin/gpgv 19 ''; 20 + 21 + meta = { 22 + platforms = stdenv.lib.platforms.linux; 23 + }; 24 }
+1
pkgs/tools/security/metasploit/default.nix
··· 29 meta = { 30 description = "Metasploit Framework - a collection of exploits"; 31 homepage = https://github.com/rapid7/metasploit-framework/wiki; 32 }; 33 }
··· 29 meta = { 30 description = "Metasploit Framework - a collection of exploits"; 31 homepage = https://github.com/rapid7/metasploit-framework/wiki; 32 + platforms = stdenv.lib.platforms.unix; 33 }; 34 }
+3
pkgs/tools/security/mktemp/default.nix
··· 11 sha256 = "1nfj89b0dv1c2fyqi1pg54fyzs3462cbp7jv7lskqsxvqy4mh9x1"; 12 }; 13 14 }
··· 11 sha256 = "1nfj89b0dv1c2fyqi1pg54fyzs3462cbp7jv7lskqsxvqy4mh9x1"; 12 }; 13 14 + meta = { 15 + platforms = stdenv.lib.platforms.unix; 16 + }; 17 }
+4
pkgs/tools/security/mpw/default.nix
··· 39 mkdir -p $out/bin 40 mv mpw $out/bin/mpw 41 ''; 42 }
··· 39 mkdir -p $out/bin 40 mv mpw $out/bin/mpw 41 ''; 42 + 43 + meta = { 44 + platforms = stdenv.lib.platforms.unix; 45 + }; 46 }
+1
pkgs/tools/security/ossec/default.nix
··· 34 description = "Open soruce host-based instrusion detection system"; 35 homepage = http://www.ossec.net; 36 license = stdenv.lib.licenses.gpl2; 37 }; 38 } 39
··· 34 description = "Open soruce host-based instrusion detection system"; 35 homepage = http://www.ossec.net; 36 license = stdenv.lib.licenses.gpl2; 37 + platforms = stdenv.lib.platforms.linux; 38 }; 39 } 40
+1
pkgs/tools/security/pass/rofi-pass.nix
··· 48 homepage = https://github.com/carnager/rofi-pass; 49 maintainers = with stdenv.lib.maintainers; [ hiberno the-kenny ]; 50 license = stdenv.lib.licenses.gpl3; 51 }; 52 }
··· 48 homepage = https://github.com/carnager/rofi-pass; 49 maintainers = with stdenv.lib.maintainers; [ hiberno the-kenny ]; 50 license = stdenv.lib.licenses.gpl3; 51 + platforms = with stdenv.lib.platforms; linux; 52 }; 53 }
+1
pkgs/tools/security/prey/default.nix
··· 43 description = "Proven tracking software that helps you find, lock and recover your devices when stolen or missing"; 44 maintainers = with maintainers; [ domenkozar ]; 45 license = licenses.gpl3; 46 }; 47 }
··· 43 description = "Proven tracking software that helps you find, lock and recover your devices when stolen or missing"; 44 maintainers = with maintainers; [ domenkozar ]; 45 license = licenses.gpl3; 46 + platforms = with platforms; linux; 47 }; 48 }
+1
pkgs/tools/security/seccure/default.nix
··· 20 meta = { 21 homepage = http://point-at-infinity.org/seccure/; 22 description = "Zero-configuration elliptic curve cryptography utility"; 23 }; 24 }
··· 20 meta = { 21 homepage = http://point-at-infinity.org/seccure/; 22 description = "Zero-configuration elliptic curve cryptography utility"; 23 + platforms = stdenv.lib.platforms.unix; 24 }; 25 }
+1
pkgs/tools/security/secp256k1/default.nix
··· 31 homepage = https://github.com/bitcoin-core/secp256k1; 32 license = with licenses; [ mit ]; 33 maintainers = with maintainers; [ chris-martin ]; 34 }; 35 }
··· 31 homepage = https://github.com/bitcoin-core/secp256k1; 32 license = with licenses; [ mit ]; 33 maintainers = with maintainers; [ chris-martin ]; 34 + platforms = with platforms; unix; 35 }; 36 }
+1
pkgs/tools/security/ssss/default.nix
··· 22 meta = { 23 description = "Shamir Secret Sharing Scheme"; 24 homepage = http://point-at-infinity.org/ssss/; 25 }; 26 }
··· 22 meta = { 23 description = "Shamir Secret Sharing Scheme"; 24 homepage = http://point-at-infinity.org/ssss/; 25 + platforms = stdenv.lib.platforms.unix; 26 }; 27 }
+24 -24
pkgs/tools/security/steghide/default.nix
··· 1 { stdenv, fetchurl, libjpeg, libmcrypt, zlib, libmhash, gettext, libtool}: 2 3 - stdenv.mkDerivation rec { 4 - buildInputs = [ libjpeg libmcrypt zlib libmhash gettext libtool ]; 5 - version = "0.5.1"; 6 - name = "steghide-${version}"; 7 - 8 - meta = with stdenv.lib; { 9 - homepage = http://steghide.sourceforge.net/; 10 - description = "Steganography program that is able to hide data in various kinds of image- and audio-files"; 11 - license = licenses.gpl2; 12 - }; 13 14 - src = fetchurl { 15 - url = "mirror://sourceforge/steghide/steghide/${version}/steghide-${version}.tar.gz" ; 16 - sha256 = "78069b7cfe9d1f5348ae43f918f06f91d783c2b3ff25af021e6a312cf541b47b"; 17 - }; 18 19 - patches = [ 20 - ./patches/steghide-0.5.1-gcc34.patch 21 - ./patches/steghide-0.5.1-gcc4.patch 22 - ./patches/steghide-0.5.1-gcc43.patch 23 - ]; 24 25 - # AM_CXXFLAGS needed for automake 26 - preConfigure = '' 27 - export AM_CXXFLAGS="$CXXFLAGS -std=c++0x" 28 - ''; 29 30 - }
··· 1 { stdenv, fetchurl, libjpeg, libmcrypt, zlib, libmhash, gettext, libtool}: 2 3 + stdenv.mkDerivation rec { 4 + buildInputs = [ libjpeg libmcrypt zlib libmhash gettext libtool ]; 5 + version = "0.5.1"; 6 + name = "steghide-${version}"; 7 8 + src = fetchurl { 9 + url = "mirror://sourceforge/steghide/steghide/${version}/steghide-${version}.tar.gz" ; 10 + sha256 = "78069b7cfe9d1f5348ae43f918f06f91d783c2b3ff25af021e6a312cf541b47b"; 11 + }; 12 13 + patches = [ 14 + ./patches/steghide-0.5.1-gcc34.patch 15 + ./patches/steghide-0.5.1-gcc4.patch 16 + ./patches/steghide-0.5.1-gcc43.patch 17 + ]; 18 19 + # AM_CXXFLAGS needed for automake 20 + preConfigure = '' 21 + export AM_CXXFLAGS="$CXXFLAGS -std=c++0x" 22 + ''; 23 24 + meta = with stdenv.lib; { 25 + homepage = http://steghide.sourceforge.net/; 26 + description = "Steganography program that is able to hide data in various kinds of image- and audio-files"; 27 + license = licenses.gpl2; 28 + platforms = platforms.linux; 29 + }; 30 + }
+2 -1
pkgs/tools/security/super/default.nix
··· 31 in /etc/super.tab); and 2) “setuid”, which allows root to 32 execute a command under a different uid. 33 ''; 34 - }; 35 }
··· 31 in /etc/super.tab); and 2) “setuid”, which allows root to 32 execute a command under a different uid. 33 ''; 34 + platforms = stdenv.lib.platforms.linux; 35 + }; 36 }
+1
pkgs/tools/system/bootchart/default.nix
··· 22 homepage = http://www.bootchart.org/; 23 description = "Performance analysis and visualization of the GNU/Linux boot process"; 24 license = licenses.gpl2Plus; 25 }; 26 27 }
··· 22 homepage = http://www.bootchart.org/; 23 description = "Performance analysis and visualization of the GNU/Linux boot process"; 24 license = licenses.gpl2Plus; 25 + platforms = platforms.linux; 26 }; 27 28 }
+1
pkgs/tools/system/mcron/default.nix
··· 28 homepage = http://www.gnu.org/software/mcron/; 29 30 license = stdenv.lib.licenses.gpl3Plus; 31 }; 32 }
··· 28 homepage = http://www.gnu.org/software/mcron/; 29 30 license = stdenv.lib.licenses.gpl3Plus; 31 + platforms = stdenv.lib.platforms.unix; 32 }; 33 }
+1
pkgs/tools/system/monit/default.nix
··· 21 description = "Monitoring system"; 22 license = stdenv.lib.licenses.agpl3; 23 maintainers = with stdenv.lib.maintainers; [ raskin wmertens ]; 24 }; 25 }
··· 21 description = "Monitoring system"; 22 license = stdenv.lib.licenses.agpl3; 23 maintainers = with stdenv.lib.maintainers; [ raskin wmertens ]; 24 + platforms = with stdenv.lib.platforms; linux; 25 }; 26 }
+1
pkgs/tools/system/setserial/default.nix
··· 21 22 meta = { 23 description = "Serial port configuration utility"; 24 }; 25 }
··· 21 22 meta = { 23 description = "Serial port configuration utility"; 24 + platforms = stdenv.lib.platforms.linux; 25 }; 26 }
+1
pkgs/tools/system/suid-chroot/default.nix
··· 17 description = "Setuid-safe wrapper for chroot"; 18 license = licenses.gpl2Plus; 19 maintainers = with maintainers; [ nckx ]; 20 }; 21 }
··· 17 description = "Setuid-safe wrapper for chroot"; 18 license = licenses.gpl2Plus; 19 maintainers = with maintainers; [ nckx ]; 20 + platforms = with platforms; unix; 21 }; 22 }
+1
pkgs/tools/system/symlinks/default.nix
··· 23 meta = with stdenv.lib; { 24 description = "A symbolic link maintenance utility"; 25 maintainers = [ maintainers.goibhniu ]; 26 }; 27 }
··· 23 meta = with stdenv.lib; { 24 description = "A symbolic link maintenance utility"; 25 maintainers = [ maintainers.goibhniu ]; 26 + platforms = platforms.linux; 27 }; 28 }
+1
pkgs/tools/system/syslog-ng/default.nix
··· 24 description = "Next-generation syslogd with advanced networking and filtering capabilities"; 25 license = licenses.gpl2; 26 maintainers = [ maintainers.rickynils ]; 27 }; 28 }
··· 24 description = "Next-generation syslogd with advanced networking and filtering capabilities"; 25 license = licenses.gpl2; 26 maintainers = [ maintainers.rickynils ]; 27 + platforms = platforms.linux; 28 }; 29 }
+1
pkgs/tools/text/ansifilter/default.nix
··· 19 20 license = stdenv.lib.licenses.gpl1; 21 maintainers = [ stdenv.lib.maintainers.Adjective-Object ]; 22 }; 23 24 makeFlags="PREFIX=$(out) conf_dir=$(out)/etc/ansifilter/";
··· 19 20 license = stdenv.lib.licenses.gpl1; 21 maintainers = [ stdenv.lib.maintainers.Adjective-Object ]; 22 + platforms = stdenv.lib.platforms.linux; 23 }; 24 25 makeFlags="PREFIX=$(out) conf_dir=$(out)/etc/ansifilter/";
+1
pkgs/tools/text/convertlit/default.nix
··· 29 homepage = http://www.convertlit.com/; 30 description = "A tool for converting Microsoft Reader ebooks to more open formats"; 31 license = stdenv.lib.licenses.gpl2; 32 }; 33 }
··· 29 homepage = http://www.convertlit.com/; 30 description = "A tool for converting Microsoft Reader ebooks to more open formats"; 31 license = stdenv.lib.licenses.gpl2; 32 + platforms = stdenv.lib.platforms.linux; 33 }; 34 }
+1
pkgs/tools/text/dadadodo/default.nix
··· 18 description = "Markov chain-based text generator"; 19 homepage = http://www.jwz.org/dadadodo; 20 maintainers = with maintainers; [ pSub ]; 21 }; 22 }
··· 18 description = "Markov chain-based text generator"; 19 homepage = http://www.jwz.org/dadadodo; 20 maintainers = with maintainers; [ pSub ]; 21 + platforms = with platforms; linux; 22 }; 23 }
+1
pkgs/tools/text/diction/default.nix
··· 17 readability measures. 18 ''; 19 license = stdenv.lib.licenses.gpl3Plus; 20 }; 21 }
··· 17 readability measures. 18 ''; 19 license = stdenv.lib.licenses.gpl3Plus; 20 + platforms = stdenv.lib.platforms.unix; 21 }; 22 }
+1
pkgs/tools/text/diffutils/default.nix
··· 16 meta = { 17 homepage = http://www.gnu.org/software/diffutils/diffutils.html; 18 description = "Commands for showing the differences between files (diff, cmp, etc.)"; 19 }; 20 }
··· 16 meta = { 17 homepage = http://www.gnu.org/software/diffutils/diffutils.html; 18 description = "Commands for showing the differences between files (diff, cmp, etc.)"; 19 + platforms = stdenv.lib.platforms.unix; 20 }; 21 }
+1
pkgs/tools/text/discount/default.nix
··· 15 homepage = "http://www.pell.portland.or.us/~orc/Code/discount/"; 16 license = licenses.bsd3; 17 maintainers = [ maintainers.shell ]; 18 }; 19 }
··· 15 homepage = "http://www.pell.portland.or.us/~orc/Code/discount/"; 16 license = licenses.bsd3; 17 maintainers = [ maintainers.shell ]; 18 + platforms = platforms.unix; 19 }; 20 }
+1
pkgs/tools/text/highlight/default.nix
··· 15 16 meta = { 17 description = "Source code highlighting tool"; 18 }; 19 }
··· 15 16 meta = { 17 description = "Source code highlighting tool"; 18 + platforms = stdenv.lib.platforms.unix; 19 }; 20 }
+8 -7
pkgs/tools/text/mawk/default.nix
··· 8 sha256 = "1j49ffl8gpfaq99hkylf3fjiygq74w1kpfp8f52xbpx57vn9587g"; 9 }; 10 11 - meta = with stdenv.lib; 12 - { description = "Interpreter for the AWK Programming Language"; 13 - homepage = http://invisible-island.net/mawk/mawk.html; 14 - license = licenses.gpl2; 15 - maintainers = with maintainers; [ ehmry ]; 16 - }; 17 - }
··· 8 sha256 = "1j49ffl8gpfaq99hkylf3fjiygq74w1kpfp8f52xbpx57vn9587g"; 9 }; 10 11 + meta = with stdenv.lib; { 12 + description = "Interpreter for the AWK Programming Language"; 13 + homepage = http://invisible-island.net/mawk/mawk.html; 14 + license = licenses.gpl2; 15 + maintainers = with maintainers; [ ehmry ]; 16 + platforms = with platforms; unix; 17 + }; 18 + }
+1
pkgs/tools/text/mpage/default.nix
··· 24 25 license = "liberal"; # a non-copyleft license, see `Copyright' file 26 homepage = http://www.mesa.nl/pub/mpage/; 27 }; 28 }
··· 24 25 license = "liberal"; # a non-copyleft license, see `Copyright' file 26 homepage = http://www.mesa.nl/pub/mpage/; 27 + platforms = stdenv.lib.platforms.linux; 28 }; 29 }
+1
pkgs/tools/text/multitran/data/default.nix
··· 20 homepage = http://multitran.sourceforge.net/; 21 description = "Multitran data english-russian"; 22 license = stdenv.lib.licenses.gpl2; 23 }; 24 }
··· 20 homepage = http://multitran.sourceforge.net/; 21 description = "Multitran data english-russian"; 22 license = stdenv.lib.licenses.gpl2; 23 + platforms = stdenv.lib.platforms.unix; 24 }; 25 }
+1
pkgs/tools/text/multitran/libbtree/default.nix
··· 14 homepage = http://multitran.sourceforge.net/; 15 description = "Multitran lib: library for reading Multitran's BTREE database format"; 16 license = stdenv.lib.licenses.gpl2; 17 }; 18 }
··· 14 homepage = http://multitran.sourceforge.net/; 15 description = "Multitran lib: library for reading Multitran's BTREE database format"; 16 license = stdenv.lib.licenses.gpl2; 17 + platforms = stdenv.lib.platforms.linux; 18 }; 19 }
+1
pkgs/tools/text/multitran/libfacet/default.nix
··· 20 homepage = http://multitran.sourceforge.net/; 21 description = "Multitran lib: enchanced locale facets"; 22 license = stdenv.lib.licenses.gpl2; 23 }; 24 }
··· 20 homepage = http://multitran.sourceforge.net/; 21 description = "Multitran lib: enchanced locale facets"; 22 license = stdenv.lib.licenses.gpl2; 23 + platforms = stdenv.lib.platforms.linux; 24 }; 25 }
+1
pkgs/tools/text/multitran/libmtquery/default.nix
··· 22 homepage = http://multitran.sourceforge.net/; 23 description = "Multitran lib: main engine to query translations"; 24 license = stdenv.lib.licenses.gpl2; 25 }; 26 }
··· 22 homepage = http://multitran.sourceforge.net/; 23 description = "Multitran lib: main engine to query translations"; 24 license = stdenv.lib.licenses.gpl2; 25 + platforms = stdenv.lib.platforms.linux; 26 }; 27 }
+1
pkgs/tools/text/multitran/libmtsupport/default.nix
··· 14 homepage = http://multitran.sourceforge.net/; 15 description = "Multitran lib: basic useful functions"; 16 license = stdenv.lib.licenses.gpl2; 17 }; 18 }
··· 14 homepage = http://multitran.sourceforge.net/; 15 description = "Multitran lib: basic useful functions"; 16 license = stdenv.lib.licenses.gpl2; 17 + platforms = stdenv.lib.platforms.linux; 18 }; 19 }
+1
pkgs/tools/text/replace/default.nix
··· 26 meta = { 27 homepage = http://replace.richardlloyd.org.uk/; 28 description = "A tool to replace verbatim strings"; 29 }; 30 }
··· 26 meta = { 27 homepage = http://replace.richardlloyd.org.uk/; 28 description = "A tool to replace verbatim strings"; 29 + platforms = stdenv.lib.platforms.unix; 30 }; 31 }
+1
pkgs/tools/text/sgml/openjade/default.nix
··· 21 description = "An implementation of DSSSL, an ISO standard for formatting SGML (and XML) documents"; 22 license = stdenv.lib.licenses.mit; 23 homepage = http://openjade.sourceforge.net/; 24 }; 25 }
··· 21 description = "An implementation of DSSSL, an ISO standard for formatting SGML (and XML) documents"; 22 license = stdenv.lib.licenses.mit; 23 homepage = http://openjade.sourceforge.net/; 24 + platforms = stdenv.lib.platforms.linux; 25 }; 26 }
+4 -2
pkgs/tools/text/sgml/opensp/compat.nix
··· 14 15 setupHook = opensp.setupHook; 16 17 - meta.description = 18 - "Compatibility wrapper for old programs looking for original sp programs"; 19 }
··· 14 15 setupHook = opensp.setupHook; 16 17 + meta = opensp.meta // { 18 + description = "Compatibility wrapper for old programs looking for original sp programs"; 19 + platforms = stdenv.lib.platforms.unix; 20 + }; 21 }
+1
pkgs/tools/text/sgml/opensp/default.nix
··· 36 description = "A suite of SGML/XML processing tools"; 37 license = stdenv.lib.licenses.mit; 38 homepage = http://openjade.sourceforge.net/; 39 }; 40 }
··· 36 description = "A suite of SGML/XML processing tools"; 37 license = stdenv.lib.licenses.mit; 38 homepage = http://openjade.sourceforge.net/; 39 + platforms = stdenv.lib.platforms.unix; 40 }; 41 }
+1
pkgs/tools/text/txt2tags/default.nix
··· 30 description = "A KISS markup language"; 31 license = stdenv.lib.licenses.gpl2; 32 maintainers = with stdenv.lib.maintainers; [ kovirobi ]; 33 }; 34 }
··· 30 description = "A KISS markup language"; 31 license = stdenv.lib.licenses.gpl2; 32 maintainers = with stdenv.lib.maintainers; [ kovirobi ]; 33 + platforms = with stdenv.lib.platforms; unix; 34 }; 35 }
+1
pkgs/tools/text/xml/html-xml-utils/default.nix
··· 13 description = "Utilities for manipulating HTML and XML files"; 14 homepage = http://www.w3.org/Tools/HTML-XML-utils/; 15 license = stdenv.lib.licenses.w3c; 16 }; 17 }
··· 13 description = "Utilities for manipulating HTML and XML files"; 14 homepage = http://www.w3.org/Tools/HTML-XML-utils/; 15 license = stdenv.lib.licenses.w3c; 16 + platforms = stdenv.lib.platforms.linux; 17 }; 18 }
+1
pkgs/tools/text/xml/rxp/default.nix
··· 13 license = stdenv.lib.licenses.gpl2Plus; 14 description = "A validating XML parser written in C"; 15 homepage = http://www.cogsci.ed.ac.uk/~richard/rxp.html; 16 }; 17 }
··· 13 license = stdenv.lib.licenses.gpl2Plus; 14 description = "A validating XML parser written in C"; 15 homepage = http://www.cogsci.ed.ac.uk/~richard/rxp.html; 16 + platforms = stdenv.lib.platforms.unix; 17 }; 18 }
+4
pkgs/tools/text/xml/sablotron/default.nix
··· 7 md5 = "72654c4b832e7562f8240ea675577f5e"; 8 }; 9 buildInputs = [expat]; 10 }
··· 7 md5 = "72654c4b832e7562f8240ea675577f5e"; 8 }; 9 buildInputs = [expat]; 10 + 11 + meta = { 12 + platforms = stdenv.lib.platforms.unix; 13 + }; 14 }
+1
pkgs/tools/text/xml/xmlstarlet/default.nix
··· 27 description = "A command line tool for manipulating and querying XML data"; 28 homepage = http://xmlstar.sourceforge.net/; 29 license = stdenv.lib.licenses.mit; 30 }; 31 }
··· 27 description = "A command line tool for manipulating and querying XML data"; 28 homepage = http://xmlstar.sourceforge.net/; 29 license = stdenv.lib.licenses.mit; 30 + platforms = stdenv.lib.platforms.unix; 31 }; 32 }
+1
pkgs/tools/text/xml/xpf/default.nix
··· 15 meta = { 16 description = "XML Pipes and Filters - command line tools for manipulating and querying XML data"; 17 homepage = http://www.cs.uu.nl/wiki/bin/view/Martin/XmlPipesAndFilters; 18 }; 19 }
··· 15 meta = { 16 description = "XML Pipes and Filters - command line tools for manipulating and querying XML data"; 17 homepage = http://www.cs.uu.nl/wiki/bin/view/Martin/XmlPipesAndFilters; 18 + platforms = stdenv.lib.platforms.unix; 19 }; 20 }
+1
pkgs/tools/text/xurls/default.nix
··· 30 description = "Extract urls from text"; 31 homepage = https://github.com/mvdan/xurls; 32 maintainers = [ maintainers.koral ]; 33 }; 34 }
··· 30 description = "Extract urls from text"; 31 homepage = https://github.com/mvdan/xurls; 32 maintainers = [ maintainers.koral ]; 33 + platforms = platforms.unix; 34 }; 35 }
+1
pkgs/tools/text/zimreader/default.nix
··· 39 description = "A tool to serve ZIM files using HTTP"; 40 homepage = http://git.wikimedia.org/log/openzim; 41 maintainers = with stdenv.lib.maintainers; [ robbinch ]; 42 }; 43 }
··· 39 description = "A tool to serve ZIM files using HTTP"; 40 homepage = http://git.wikimedia.org/log/openzim; 41 maintainers = with stdenv.lib.maintainers; [ robbinch ]; 42 + platforms = with stdenv.lib.platforms; linux; 43 }; 44 }
+1
pkgs/tools/text/zimwriterfs/default.nix
··· 18 description = "A console tool to create ZIM files"; 19 homepage = http://git.wikimedia.org/log/openzim; 20 maintainers = with stdenv.lib.maintainers; [ robbinch ]; 21 }; 22 }
··· 18 description = "A console tool to create ZIM files"; 19 homepage = http://git.wikimedia.org/log/openzim; 20 maintainers = with stdenv.lib.maintainers; [ robbinch ]; 21 + platforms = with stdenv.lib.platforms; linux; 22 }; 23 }
+1 -1
pkgs/tools/typesetting/asciidoc/default.nix
··· 271 ''; 272 homepage = "http://www.methods.co.nz/asciidoc/"; 273 license = licenses.gpl2Plus; 274 - hydraPlatforms = platforms.linux; 275 maintainers = [ maintainers.bjornfor ]; 276 }; 277 }
··· 271 ''; 272 homepage = "http://www.methods.co.nz/asciidoc/"; 273 license = licenses.gpl2Plus; 274 + platforms = platforms.unix; 275 maintainers = [ maintainers.bjornfor ]; 276 }; 277 }
+1
pkgs/tools/typesetting/git-latexdiff/default.nix
··· 32 description = "View diff on LaTeX source files on the generated PDF files"; 33 maintainers = [ maintainers.DamienCassou ]; 34 license = licenses.free; # https://gitlab.com/git-latexdiff/git-latexdiff/issues/9 35 }; 36 }
··· 32 description = "View diff on LaTeX source files on the generated PDF files"; 33 maintainers = [ maintainers.DamienCassou ]; 34 license = licenses.free; # https://gitlab.com/git-latexdiff/git-latexdiff/issues/9 35 + platforms = platforms.unix; 36 }; 37 }
+1
pkgs/tools/typesetting/halibut/default.nix
··· 29 homepage = http://www.chiark.greenend.org.uk/~sgtatham/halibut/; 30 license = licenses.mit; 31 maintainers = with maintainers; [ pSub ]; 32 }; 33 }
··· 29 homepage = http://www.chiark.greenend.org.uk/~sgtatham/halibut/; 30 license = licenses.mit; 31 maintainers = with maintainers; [ pSub ]; 32 + platforms = with platforms; unix; 33 }; 34 }
+1
pkgs/tools/typesetting/hevea/default.nix
··· 17 homepage = http://pauillac.inria.fr/~maranget/hevea/; 18 license = licenses.qpl; 19 maintainers = with maintainers; [ pSub ]; 20 }; 21 }
··· 17 homepage = http://pauillac.inria.fr/~maranget/hevea/; 18 license = licenses.qpl; 19 maintainers = with maintainers; [ pSub ]; 20 + platforms = with platforms; linux; 21 }; 22 }
+1 -1
pkgs/tools/typesetting/multimarkdown/default.nix
··· 46 # licensed under GPLv2+ or MIT: 47 # https://raw.githubusercontent.com/fletcher/MultiMarkdown-4/master/LICENSE 48 license = with stdenv.lib.licenses; [ gpl2Plus ]; 49 - hydraPlatforms = platforms.all; 50 maintainers = with stdenv.lib.maintainers; [ lowfatcomputing ]; 51 }; 52 }
··· 46 # licensed under GPLv2+ or MIT: 47 # https://raw.githubusercontent.com/fletcher/MultiMarkdown-4/master/LICENSE 48 license = with stdenv.lib.licenses; [ gpl2Plus ]; 49 + platforms = platforms.all; 50 maintainers = with stdenv.lib.maintainers; [ lowfatcomputing ]; 51 }; 52 }
+1
pkgs/tools/typesetting/rubber/default.nix
··· 31 license = stdenv.lib.licenses.gpl2Plus; 32 homepage = http://www.pps.jussieu.fr/~beffara/soft/rubber/; 33 maintainers = [ stdenv.lib.maintainers.ttuegel ]; 34 }; 35 }
··· 31 license = stdenv.lib.licenses.gpl2Plus; 32 homepage = http://www.pps.jussieu.fr/~beffara/soft/rubber/; 33 maintainers = [ stdenv.lib.maintainers.ttuegel ]; 34 + platforms = stdenv.lib.platforms.unix; 35 }; 36 }
+6 -5
pkgs/tools/typesetting/tex/auctex/default.nix
··· 12 13 outputs = [ "out" "tex" ]; 14 15 - meta = { 16 - description = "Extensible package for writing and formatting TeX files in GNU Emacs and XEmacs"; 17 - homepage = http://www.gnu.org/software/auctex; 18 - }; 19 - 20 src = fetchurl { 21 url = "mirror://gnu/${pname}/${name}.tar.gz"; 22 sha256 = "1cf9fkkmzjxa4jvk6c01zgxdikr4zzb5pcx8i4r0hwdk0xljkbwq"; ··· 32 "--with-lispdir=\${out}/share/emacs/site-lisp" 33 "--with-texmf-dir=\${tex}" 34 ]; 35 }); 36 37 in auctex // { pkgs = [ auctex.tex ]; }
··· 12 13 outputs = [ "out" "tex" ]; 14 15 src = fetchurl { 16 url = "mirror://gnu/${pname}/${name}.tar.gz"; 17 sha256 = "1cf9fkkmzjxa4jvk6c01zgxdikr4zzb5pcx8i4r0hwdk0xljkbwq"; ··· 27 "--with-lispdir=\${out}/share/emacs/site-lisp" 28 "--with-texmf-dir=\${tex}" 29 ]; 30 + 31 + meta = { 32 + description = "Extensible package for writing and formatting TeX files in GNU Emacs and XEmacs"; 33 + homepage = http://www.gnu.org/software/auctex; 34 + platforms = stdenv.lib.platforms.unix; 35 + }; 36 }); 37 38 in auctex // { pkgs = [ auctex.tex ]; }
+1
pkgs/tools/typesetting/tex/dblatex/default.nix
··· 67 description = "A program to convert DocBook to DVI, PostScript or PDF via LaTeX or ConTeXt"; 68 homepage = http://dblatex.sourceforge.net/; 69 license = stdenv.lib.licenses.gpl2Plus; 70 }; 71 }
··· 67 description = "A program to convert DocBook to DVI, PostScript or PDF via LaTeX or ConTeXt"; 68 homepage = http://dblatex.sourceforge.net/; 69 license = stdenv.lib.licenses.gpl2Plus; 70 + platforms = stdenv.lib.platforms.unix; 71 }; 72 }
+4
pkgs/tools/typesetting/tex/lkproof/default.nix
··· 14 mkdir -p $out/share/texmf-nix/tex/generic/lkproof 15 cp -prd *.sty $out/share/texmf-nix/tex/generic/lkproof 16 "; 17 }
··· 14 mkdir -p $out/share/texmf-nix/tex/generic/lkproof 15 cp -prd *.sty $out/share/texmf-nix/tex/generic/lkproof 16 "; 17 + 18 + meta = { 19 + platforms = stdenv.lib.platforms.unix; 20 + }; 21 }
+1
pkgs/tools/typesetting/tex/pgf/1.x.nix
··· 17 18 meta = { 19 branch = "1"; 20 }; 21 }
··· 17 18 meta = { 19 branch = "1"; 20 + platforms = stdenv.lib.platforms.unix; 21 }; 22 }
+1
pkgs/tools/typesetting/tex/pgf/2.x.nix
··· 17 18 meta = { 19 branch = "2"; 20 }; 21 }
··· 17 18 meta = { 19 branch = "2"; 20 + platforms = stdenv.lib.platforms.unix; 21 }; 22 }
+1
pkgs/tools/typesetting/tex/pgf/3.x.nix
··· 26 27 meta = { 28 branch = "3"; 29 }; 30 }
··· 26 27 meta = { 28 branch = "3"; 29 + platforms = stdenv.lib.platforms.unix; 30 }; 31 }
+4
pkgs/tools/typesetting/tex/pgfplots/default.nix
··· 18 mkdir -p $out/share/texmf-nix 19 cp -prd * $out/share/texmf-nix 20 "; 21 }
··· 18 mkdir -p $out/share/texmf-nix 19 cp -prd * $out/share/texmf-nix 20 "; 21 + 22 + meta = { 23 + platforms = stdenv.lib.platforms.unix; 24 + }; 25 }
+1
pkgs/tools/typesetting/tex/tex4ht/default.nix
··· 31 homepage = "http://tug.org/tex4ht/"; 32 description = "A system to convert (La)TeX documents to HTML and various other formats"; 33 license = stdenv.lib.licenses.lppl12; 34 }; 35 }
··· 31 homepage = "http://tug.org/tex4ht/"; 32 description = "A system to convert (La)TeX documents to HTML and various other formats"; 33 license = stdenv.lib.licenses.lppl12; 34 + platforms = stdenv.lib.platforms.unix; 35 }; 36 }
+4
pkgs/tools/typesetting/xmlroff/default.nix
··· 36 sourceRoot = "${name}/xmlroff/"; 37 38 patches = [./xmlroff.patch]; 39 }
··· 36 sourceRoot = "${name}/xmlroff/"; 37 38 patches = [./xmlroff.patch]; 39 + 40 + meta = { 41 + platforms = stdenv.lib.platforms.unix; 42 + }; 43 }
+1
pkgs/tools/typesetting/xmlto/default.nix
··· 44 45 license = stdenv.lib.licenses.gpl2Plus; 46 homepage = https://fedorahosted.org/xmlto/; 47 }; 48 }
··· 44 45 license = stdenv.lib.licenses.gpl2Plus; 46 homepage = https://fedorahosted.org/xmlto/; 47 + platforms = stdenv.lib.platforms.unix; 48 }; 49 }
+1
pkgs/tools/video/swfmill/default.nix
··· 16 description = "An xml2swf and swf2xml processor with import functionalities"; 17 homepage = "http://swfmill.org"; 18 license = stdenv.lib.licenses.gpl2; 19 }; 20 }
··· 16 description = "An xml2swf and swf2xml processor with import functionalities"; 17 homepage = "http://swfmill.org"; 18 license = stdenv.lib.licenses.gpl2; 19 + platforms = stdenv.lib.platforms.linux; 20 }; 21 }
+1
pkgs/tools/video/swftools/default.nix
··· 19 homepage = http://www.swftools.org/about.html; 20 license = licenses.gpl2; 21 maintainers = [ maintainers.koral ]; 22 }; 23 }
··· 19 homepage = http://www.swftools.org/about.html; 20 license = licenses.gpl2; 21 maintainers = [ maintainers.koral ]; 22 + platforms = stdenv.lib.platforms.unix; 23 }; 24 }
+1
pkgs/tools/video/vncrec/default.nix
··· 26 meta = { 27 description = "VNC recorder"; 28 homepage = http://ronja.twibright.com/utils/vncrec/; 29 }; 30 }
··· 26 meta = { 27 description = "VNC recorder"; 28 homepage = http://ronja.twibright.com/utils/vncrec/; 29 + platforms = stdenv.lib.platforms.linux; 30 }; 31 }
+1
pkgs/tools/virtualization/aws/default.nix
··· 23 homepage = http://www.timkay.com/aws/; 24 description = "Command-line utility for working with Amazon EC2, S3, SQS, ELB, IAM and SDB"; 25 license = stdenv.lib.licenses.gpl3Plus; 26 }; 27 }
··· 23 homepage = http://www.timkay.com/aws/; 24 description = "Command-line utility for working with Amazon EC2, S3, SQS, ELB, IAM and SDB"; 25 license = stdenv.lib.licenses.gpl3Plus; 26 + platforms = stdenv.lib.platforms.unix; 27 }; 28 }
+11 -8
pkgs/top-level/all-packages.nix
··· 5963 spidermonkey_31 = callPackage ../development/interpreters/spidermonkey/31.5.nix { }; 5964 5965 supercollider = callPackage ../development/interpreters/supercollider { 5966 - gcc = gcc48; # doesn't build with gcc49 5967 - qt = qt4; 5968 fftw = fftwSinglePrec; 5969 }; 5970 ··· 8887 8888 openslp = callPackage ../development/libraries/openslp {}; 8889 8890 - libressl = self.libressl_2_3; 8891 - libressl_2_2 = callPackage ../development/libraries/libressl/2.2.nix { 8892 - fetchurl = fetchurlBoot; 8893 - }; 8894 libressl_2_3 = callPackage ../development/libraries/libressl/2.3.nix { 8895 fetchurl = fetchurlBoot; 8896 }; ··· 13038 13039 rhythmbox = callPackage ../applications/audio/rhythmbox { }; 13040 13041 wavesurfer = callPackage ../applications/misc/audio/wavesurfer { }; 13042 13043 wireshark-cli = callPackage ../applications/networking/sniffers/wireshark { ··· 15592 wxGTK = wxGTK28.override { unicode = false; }; 15593 }; 15594 15595 gav = callPackage ../games/gav { }; 15596 15597 gemrb = callPackage ../games/gemrb { }; ··· 15816 }; 15817 15818 solarus = callPackage ../games/solarus { }; 15819 - 15820 solarus-quest-editor = qt5.callPackage ../development/tools/solarus-quest-editor { }; 15821 15822 # You still can override by passing more arguments. ··· 17010 17011 fceux = callPackage ../misc/emulators/fceux { }; 17012 17013 foldingathome = callPackage ../misc/foldingathome { }; 17014 17015 foo2zjs = callPackage ../misc/drivers/foo2zjs {}; ··· 17279 17280 sqsh = callPackage ../development/tools/sqsh { }; 17281 17282 - terraform = callPackage ../applications/networking/cluster/terraform { }; 17283 17284 tetex = callPackage ../tools/typesetting/tex/tetex { libpng = libpng12; }; 17285
··· 5963 spidermonkey_31 = callPackage ../development/interpreters/spidermonkey/31.5.nix { }; 5964 5965 supercollider = callPackage ../development/interpreters/supercollider { 5966 fftw = fftwSinglePrec; 5967 }; 5968 ··· 8885 8886 openslp = callPackage ../development/libraries/openslp {}; 8887 8888 + libressl = self.libressl_2_4; 8889 libressl_2_3 = callPackage ../development/libraries/libressl/2.3.nix { 8890 fetchurl = fetchurlBoot; 8891 }; ··· 13033 13034 rhythmbox = callPackage ../applications/audio/rhythmbox { }; 13035 13036 + puddletag = callPackage ../applications/audio/puddletag { }; 13037 + 13038 wavesurfer = callPackage ../applications/misc/audio/wavesurfer { }; 13039 13040 wireshark-cli = callPackage ../applications/networking/sniffers/wireshark { ··· 15589 wxGTK = wxGTK28.override { unicode = false; }; 15590 }; 15591 15592 + gambatte = callPackage ../games/gambatte { }; 15593 + 15594 gav = callPackage ../games/gav { }; 15595 15596 gemrb = callPackage ../games/gemrb { }; ··· 15815 }; 15816 15817 solarus = callPackage ../games/solarus { }; 15818 + 15819 solarus-quest-editor = qt5.callPackage ../development/tools/solarus-quest-editor { }; 15820 15821 # You still can override by passing more arguments. ··· 17009 17010 fceux = callPackage ../misc/emulators/fceux { }; 17011 17012 + flat-plat = callPackage ../misc/themes/flat-plat { }; 17013 + 17014 foldingathome = callPackage ../misc/foldingathome { }; 17015 17016 foo2zjs = callPackage ../misc/drivers/foo2zjs {}; ··· 17280 17281 sqsh = callPackage ../development/tools/sqsh { }; 17282 17283 + terraform = 17284 + (callPackage ../applications/networking/cluster/terraform {}).bin // 17285 + { outputs = [ "bin" ]; }; 17286 17287 tetex = callPackage ../tools/typesetting/tex/tetex { libpng = libpng12; }; 17288
+2 -2
pkgs/top-level/perl-packages.nix
··· 9578 }; 9579 9580 NetSSLeay = buildPerlPackage rec { 9581 - name = "Net-SSLeay-1.72"; 9582 src = fetchurl { 9583 url = "mirror://cpan/authors/id/M/MI/MIKEM/${name}.tar.gz"; 9584 - sha256 = "1x6jjmhvsdq488k6wdg58ajnr4dmbcbk7imyv0aybkhj1ygw7ahv"; 9585 }; 9586 buildInputs = [ pkgs.openssl ]; 9587 doCheck = false; # Test performs network access.
··· 9578 }; 9579 9580 NetSSLeay = buildPerlPackage rec { 9581 + name = "Net-SSLeay-1.77"; 9582 src = fetchurl { 9583 url = "mirror://cpan/authors/id/M/MI/MIKEM/${name}.tar.gz"; 9584 + sha256 = "06h6wbr923jxmazmv5shdg1767s7r60bvzcza52dk31yckks6l31"; 9585 }; 9586 buildInputs = [ pkgs.openssl ]; 9587 doCheck = false; # Test performs network access.
+18 -9
pkgs/top-level/python-packages.nix
··· 6527 }; 6528 6529 git-up = buildPythonPackage rec { 6530 - version = "1.4.0"; 6531 name = "git-up-${version}"; 6532 6533 - src = pkgs.fetchFromGitHub { 6534 - owner = "msiemens"; 6535 - repo = "PyGitUp"; 6536 - rev = "v${version}"; 6537 - sha256 = "1g7sxiqg6vxx2jlgg8pg9fqsk1xgvm80d7mcpw8i3mw7r835q4bi"; 6538 }; 6539 6540 buildInputs = with self; [ pkgs.git nose ]; ··· 13481 }; 13482 13483 mutagen = buildPythonPackage (rec { 13484 - name = "mutagen-1.27"; 13485 13486 src = pkgs.fetchurl { 13487 url = "mirror://pypi/m/mutagen/${name}.tar.gz"; 13488 - sha256 = "cc884fe1e20fe220be7ce7c3b269f4cadc69a8310150a3a41162fba1ca9c88bd"; 13489 }; 13490 13491 # Needed for tests only 13492 - buildInputs = [ pkgs.faad2 pkgs.flac pkgs.vorbis-tools pkgs.liboggz ]; 13493 13494 meta = { 13495 description = "Python multimedia tagging library";
··· 6527 }; 6528 6529 git-up = buildPythonPackage rec { 6530 + version = "1.4.1"; 6531 name = "git-up-${version}"; 6532 6533 + src = pkgs.fetchurl { 6534 + url = "mirror://pypi/g/git-up/${name}.zip"; 6535 + sha256 = "1nsdzjnla0926fzfsqnwyzg3f7g253n8lk4wgw8nj2rv0awbdmas"; 6536 }; 6537 6538 buildInputs = with self; [ pkgs.git nose ]; ··· 13479 }; 13480 13481 mutagen = buildPythonPackage (rec { 13482 + name = "mutagen-1.32"; 13483 13484 src = pkgs.fetchurl { 13485 url = "mirror://pypi/m/mutagen/${name}.tar.gz"; 13486 + sha256 = "1d9sxl442xjj7pdyjj5h0dsjyd7d3wqswr8icqqgqdmg9k8dw8bp"; 13487 }; 13488 13489 # Needed for tests only 13490 + buildInputs = [ pkgs.faad2 pkgs.flac pkgs.vorbis-tools pkgs.liboggz 13491 + pkgs.glibcLocales 13492 + ]; 13493 + LC_ALL = "en_US.UTF-8"; 13494 + 13495 + # Remove test that fails due to missing encoding in nix_run_setup.py, a 13496 + # file that buildPythonPackage copies to source trees at build time. 13497 + # PR with fix: https://github.com/NixOS/nixpkgs/pull/17430 13498 + # ("python: add file encoding to run_setup.py") 13499 + preBuild = '' 13500 + rm tests/test_encoding.py 13501 + ''; 13502 13503 meta = { 13504 description = "Python multimedia tagging library";