about summary refs log tree commit diff
path: root/pkgs/tools/misc/uutils-coreutils
AgeCommit message (Collapse)AuthorFilesLines
2022-10-12uutils-coreutils: 0.0.15 -> 0.0.16ilkecan1-3/+3
2022-09-19uutils-coreutils: 0.0.14 -> 0.0.15ilkecan1-3/+3
2022-05-24uutils-coreutils: 0.0.13 -> 0.0.14PedroHLC ☭1-3/+3
2022-04-02uutils-coreutils: 0.0.12 -> 0.0.13Atemu1-3/+3
2022-01-25uutils-coreutils: 0.0.8 -> 0.0.12ajs1241-3/+3
2021-10-27uutils-coreutils: 0.0.7 -> 0.0.8FliegendeWurst1-3/+3
2021-07-12uutils-coreutils: 0.0.6 -> 0.0.706kellyjac1-9/+3
2021-07-07uutils-coreutils: fix darwin build (missing libiconv)Finn Behrens1-1/+2
2021-04-05uutils-coreutils: 0.0.4 -> 0.0.6Sandro Jäckel1-3/+3
2021-03-14uutils-coreutils: install symlinks again by converting to ↵Sandro Jäckel1-13/+31
stdenv.mkDerivation which executes make, add enableMulticallBinary option to generate small binaries and last add me as a maintainer because I have bigger plans for this package.
2021-03-09uutils-coreutils: 0.0.3 -> 0.0.4Ben Siraphob1-3/+4
2021-02-03uutils-coreutils: 2019-05-03 -> 0.0.3Ben Siraphob1-6/+7
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly1-1/+1
2020-03-29uutils-coreutils: fix strict deps buildJörg Thalheim1-2/+2
2020-02-28uutils-coreutils: upgrade cargo fetcher and cargoSha256Benjamin Hipple1-4/+1
Infra upgrade as part of #79975; no functional change expected.
2020-02-13treewide: change fetchCargoTarball default to opt-outBenjamin Hipple1-0/+3
Changes the default fetcher in the Rust Platform to be the newer `fetchCargoTarball`, and changes every application using the current default to instead opt out. This commit does not change any hashes or cause any rebuilds. Once integrated, we will start deleting the opt-outs and recomputing hashes. See #79975 for details.
2019-12-29uutils-coreutils: fix darwin buildMaximilian Bosch1-3/+5
https://hydra.nixos.org/build/108523395
2019-12-26treewide: update which packages I'm currently maintainingMaximilian Bosch1-1/+1
Idea shamelessly stolen from 4e60b0efae56cc8e1a8a606a5a89462c38aba305. I realized that I don't really know anymore where I'm listed as maintainer and what I'm actually (co)-maintaining which means that I can't proactively take care of packages I officially maintain. As I don't have the time, energy and motivation to take care of stuff I was interested in 1 or 2 years ago (or packaged for someone else in the past), I decided that I make this explicit by removing myself from several packages and adding myself in some other stuff I'm now interested in. I've seen it several times now that people remove themselves from a package without removing the package if it's unmaintained after that which is why I figured that it's fine in my case as the affected pkgs are rather low-prio and were pretty easy to maintain.
2019-05-11uutils-coreutils: 2018-09-30 -> 2019-05-03Maximilian Bosch1-4/+4
There's still no new release, but since there are ~120 commits since August with several dependency bumps and improvements regarding the compatibility with the GNU coreutils. The full diff can be viewed here: https://github.com/uutils/coreutils/compare/a161b7e803aef08455ae0547dccd9210e38a4574...036dd812958ace22d973acf7b370f58072049dac
2018-10-05uutils-coreutils: 2018-02-09 -> 2018-09-30Vladyslav Mykhailichenko1-5/+5
2018-03-03uutils-coreutils: disable general unix build for nowMaximilian Bosch1-1/+1
Currently the installation on Darwin fails due to a bug in the installation script: https://github.com/NixOS/nixpkgs/pull/34840#issuecomment-369227222 As I lack knowledge and resources to properly test this package against Darwin I'll disallow Darwin builds for now.
2018-02-28uutils-coreutils: init at 2018-02-09Maximilian Bosch1-0/+39
`uutils-coreutils` is an a cross-platform rewrite of GNU/coreutils based on Rust. It aims to increase portability and improve Windows support (see https://github.com/uutils/coreutils#why). Since the derivation provides the same binaries as `coreutils` does a `prefix` argument as been added to the function to avoid any conflicts that can be used like this: ``` nix self: super: { uutils-coreutils = self.uutils-coreutils.override { prefix = "uutils"; }; } ``` Resolves #28114 /cc @NeQuissimus ----- Important notice: the patch depends on #34505 which needs to be merged *FIRST* as it fixes a bug in the `rustc` setup of nixpkgs (see the PR's discussion and https://github.com/rust-lang/cargo/commit/5c9665f41c6b4d3b99d3b9f8b48a286f5f154692#commitcomment-27271420 for further reference).