aboutsummaryrefslogtreecommitdiff
path: root/pkgs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #69210 from peterhoeg/u/hydraPeter Hoeg2019-09-251-16/+23
|\ | | | | thc-hydra: 8.5 -> 9.0
| * mysqlPeter Hoeg2019-09-251-2/+2
| |
| * thc-hydra: 8.5 -> 9.0Peter Hoeg2019-09-241-16/+23
| |
* | Merge pull request #69336 from peterhoeg/p/py-wmiPeter Hoeg2019-09-254-0/+53
|\ \ | | | | | | pythonPackages.py-wmi-client: init at unstable-20160601
| * | py-wmi-client: init at unstable-20160601Peter Hoeg2019-09-242-0/+27
| | |
| * | pythonPackages.impacket: init at 0.9.15Peter Hoeg2019-09-242-0/+26
| | |
* | | Merge pull request #34250 from peterhoeg/p/wmiPeter Hoeg2019-09-253-0/+119
|\ \ \ | | | | | | | | check-wmiplus: init at 1.64
| * | | check-wmiplus: init at 1.64Peter Hoeg2019-09-243-0/+119
| | | |
* | | | Merge pull request #69380 from peterhoeg/f/dxx_buildPeter Hoeg2019-09-251-4/+4
|\ \ \ \ | | | | | | | | | | dxx-rebirth: build with gcc6 as gcc8 is not supported
| * | | | dxx-rebirth: build with gcc6 as gcc8 is not supportedPeter Hoeg2019-09-251-4/+4
| | |/ / | |/| |
* | | | Merge pull request #67787 from jonringer/add-python3-dotnetcore2Mario Rodas2019-09-243-0/+82
|\ \ \ \ | | | | | | | | | | python3Packages.dotnetcore2: init at 2.1.8.1
| * | | | python3Packages.dotnetcore2: init at 2.1.8.1Jonathan Ringer2019-09-243-0/+82
| | | | |
* | | | | Merge pull request #69299 from peterhoeg/f/hv_masterPeter Hoeg2019-09-251-16/+21
|\ \ \ \ \ | | | | | | | | | | | | hyperv-daemons: fix binary location to stop error log spam
| * | | | | hyperv-daemons: fix binary location to stop error log spamPeter Hoeg2019-09-241-16/+21
| | | | | |
* | | | | | Merge pull request #69379 from grahamc/net-promGraham Christensen2019-09-241-0/+29
|\ \ \ \ \ \ | | | | | | | | | | | | | | perlPackages.NetPrometheus: init at 0.07 (and StructDumb at 0.09)
| * | | | | | perlPackages.NetPrometheus: init at 0.07Graham Christensen2019-09-241-0/+15
| | | | | | |
| * | | | | | perlPackages.StructDumb: init at 0.09Graham Christensen2019-09-241-0/+14
| | | | | | |
* | | | | | | Merge pull request #68540 from peterhoeg/u/trojitaPeter Hoeg2019-09-252-12/+27
|\ \ \ \ \ \ \ | |_|_|/ / / / |/| | | | | | trojita: 0.7 -> 0.7.20190618
| * | | | | | trojita: 0.7 -> 0.7.20190618Peter Hoeg2019-09-242-12/+27
| | |_|/ / / | |/| | | |
* | | | | | picard: 2.1.3 -> 2.2.1Peter Simons2019-09-241-2/+2
| | | | | |
* | | | | | Merge pull request #69219 from rileyinman/iosevkaThomas Tuegel2019-09-248-4365/+888
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | iosevka: Simplify custom build process The interface to configure a custom build with Nix has changed due to changes upstream; please refer to the derivation for details.
| * | | | | | iosevka: Add comment to document privateBuildPlanRiley Inman2019-09-241-0/+9
| | | | | | |
| * | | | | | iosevka: Fix rev typo, link node_modules instead of copyRiley Inman2019-09-231-2/+2
| | | | | | |
| * | | | | | iosevka: Merge node dependencies into nodePackagesRiley Inman2019-09-239-4259/+1468
| | | | | | |
| * | | | | | iosevka: Declare version in mkDerivationRiley Inman2019-09-221-2/+2
| | | | | | |
| * | | | | | iosevka: Add self as maintainerRiley Inman2019-09-221-1/+7
| | | | | | |
| * | | | | | iosevka: Append extraParameters instead of overwritingRiley Inman2019-09-221-1/+2
| | | | | | |
| * | | | | | iosevka: Simplify custom build processRiley Inman2019-09-214-1093/+561
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Although hopefully this can eventually be added to nodePackages, it uses some devDependencies to build custom fonts. Node2nix doesn't currently support enabling devDependencies for a single package. - Got rid of redundant let-in statements. - node-packages.json now only pulls in Iosevka. - generate.sh * Uses a nix-shell shebang to ensure it builds using the current version of node2nix (the old version caused some issues due to the 19.03 release version being 1.6.0 instead of 1.7.0). * Builds in development mode to fix the devDependencies issue. - Use the tree of the built node package as sourceRoot instead of installing node dependencies manually. This means the source will have to be updated in both node-packages.json and default.nix, but to make things easier the derivation inherits the version number. - Disparate build options now all live under privateBuildPlan, which is converted first with builtins.toJSON and then to TOML using remarshal (Unfortunately there is not currently a builtins.toTOML). - Extra parameters can also be provided that will be converted to JSON then TOML. This will overwrite the default parameters.toml file.
* | | | | | | Merge pull request #68700 from jonringer/fix-pycurl2Robin Gloster2019-09-241-7/+7
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | pythonPackage.pycurl2: fix build
| * | | | | | | pythonPackage.pycurl2: fix buildJonathan Ringer2019-09-131-7/+7
| | | | | | | |
* | | | | | | | Merge pull request #68688 from danme/gnukRobin Gloster2019-09-241-3/+3
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | gnuk: 1.0.4 -> 1.2.14
| * | | | | | | | gnuk: 1.0.4 -> 1.2.14danme2019-09-131-3/+3
| | | | | | | | |
* | | | | | | | | Merge pull request #69005 from disassembler/ply-rsyncRobin Gloster2019-09-241-2/+2
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | linuxPackages.ply: add rsync to native build inputs
| * | | | | | | | | linuxPackages.ply: add rsync to native build inputsSamuel Leathers2019-09-171-2/+2
| | | | | | | | | |
* | | | | | | | | | Merge pull request #68687 from JohnAZoidberg/astropy-errorsRobin Gloster2019-09-241-0/+3
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | pythonPackages.astropy: Disable tests
| * | | | | | | | | | pythonPackages.astropy: Disable testsDaniel Schaefer2019-09-221-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A ton of tests fail and it's not obvious to me how to fix them. Adding bleach to checkInputs fixes a tiny number of them, though.
* | | | | | | | | | | dbeaver: 6.1.5 -> 6.2.1 (#69354)Jörg Thalheim2019-09-241-2/+2
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | dbeaver: 6.1.5 -> 6.2.1
| * | | | | | | | | | | dbeaver: 6.1.5 -> 6.2.1Johannes Schleifenbaum2019-09-241-2/+2
| | | | | | | | | | | |
* | | | | | | | | | | | Merge pull request #69312 from elohmeier/goaccessJörg Thalheim2019-09-241-3/+3
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | goaccess: fix geoip database configuration
| * | | | | | | | | | | | goaccess: fix geoip database configurationEnno Lohmeier2019-09-231-3/+3
| | | | | | | | | | | | |
* | | | | | | | | | | | | xtreemfs: mark as brokenRobin Gloster2019-09-241-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | does not support openssl 1.1
* | | | | | | | | | | | | vtk: build with system libtiffRobin Gloster2019-09-241-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fixes vtktiff, therefore at least gdcm
* | | | | | | | | | | | | Merge pull request #69309 from matthewbauer/androidx86Matthew Bauer2019-09-242-2/+2
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | androidndk: get correct libs for x86_64
| * | | | | | | | | | | | | gmp: don’t disable assembly on x86Matthew Bauer2019-09-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | this should always work, even on android / iOS toolchains
| * | | | | | | | | | | | | androidndk: get correct libs for x86_64Matthew Bauer2019-09-231-1/+1
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Merge pull request #69349 from uri-canva/riderJörg Thalheim2019-09-241-2/+2
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | jetbrains.rider: fix on darwin
| * | | | | | | | | | | | | | jetbrains.rider: fix on darwinUri Baghin2019-09-241-2/+2
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | vivaldi: 2.8.1664.35-1 -> 2.8.1664.38-1Tim Steinbach2019-09-241-2/+2
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | manticore: 2018.09.29 -> 2019.09.20 (#69350)Jörg Thalheim2019-09-241-3/+3
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / / / / / / / |/| | | | | | | | | | | | | | manticore: 2018.09.29 -> 2019.09.20
| * | | | | | | | | | | | | | manticore: 2018.09.29 -> 2019.09.20Nathan van Doorn2019-09-241-3/+3
| |/ / / / / / / / / / / / /