Commit Graph

1605 Commits

Author SHA1 Message Date
Edmund Wu
5c6e9e83d3
bcachefs-tools: 2019-08-21 -> 2019-09-25 2019-09-27 09:18:56 -04:00
Michael Raskin
1d69c41848
Merge pull request #69481 from r-ryantm/auto-update/btrfs-progs
btrfs-progs: 5.2.1 -> 5.2.2
2019-09-27 10:10:58 +00:00
Sarah Brofeldt
c86b52ff08
Merge pull request #69518 from johanot/ceph-14.2.4
ceph: 14.2.3 -> 14.2.4
2019-09-26 18:02:25 +02:00
R. RyanTM
994e18df0a fuse-overlayfs: 0.5.1 -> 0.6.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/fuse-overlayfs/versions
2019-09-26 08:19:50 -07:00
Johan Thomsen
7a61cd29bd ceph: 14.2.3 -> 14.2.4 2019-09-26 14:52:02 +02:00
R. RyanTM
bac244ab2f btrfs-progs: 5.2.1 -> 5.2.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/btrfs-progs/versions
2019-09-26 01:23:35 -07:00
Robin Gloster
daa724ae5a
xtreemfs: mark as broken
does not support openssl 1.1
2019-09-24 15:59:01 +02:00
Markus Kowalewski
2906718bcc
orangefs: init at 2.9.7 2019-09-21 16:21:10 +02:00
Jörg Thalheim
27994da318
squashfsTools: 4.4dev_20180612 -> 4.4 (#68275)
squashfsTools: 4.4dev_20180612 -> 4.4
2019-09-20 09:57:30 +01:00
Aaron Andersen
6f24ec8827
Merge pull request #66600 from Pamplemousse/sasquatch
sasquatch: init
2019-09-15 10:16:38 -04:00
Linus Heckemann
19ca6c62b0 netatalk: use system netatalk 2019-09-13 17:14:50 +00:00
Pamplemousse
d25bf0495c sasquatch: init 2019-09-12 21:28:29 -07:00
Ruud van Asseldonk
f6e8ee7533 squashfsTools: use updated Darwin patch
This new patch is the patch between 4.4, and commit [1], a pull request
at [2] to upsteam Mac and BSD compatibility. That pull request is
itself a rebase of an older pull request for an earlier version of
squashfs-tools. I squashed all commits between 4.4 and [1], apart from
the BSD-specific ones, and exported the new patch from that. Attached
below is the git diff --ignore-space-change between squashfs-tools 4.4
with the previous patch applied, and with the new patch applied.

[1]: 7d31beec53e6245d3405d6ef2b96e9811ae07044
[2]: https://github.com/plougher/squashfs-tools/pull/69

---

diff --git a/squashfs-tools/info.c b/squashfs-tools/info.c
index 8efefe6..5c2f835 100644
--- a/squashfs-tools/info.c
+++ b/squashfs-tools/info.c
@@ -159,7 +159,7 @@ void *info_thrd(void *arg)
 			case EINTR:
 				continue;
 			default:
-				BAD_ERROR("sigwaitfailed "
+				BAD_ERROR("sigwait failed "
 					"because %s\n", strerror(errno));
 			}
 		}
diff --git a/squashfs-tools/mksquashfs.c b/squashfs-tools/mksquashfs.c
index 67d86a5..3607448 100644
--- a/squashfs-tools/mksquashfs.c
+++ b/squashfs-tools/mksquashfs.c
@@ -35,7 +35,10 @@
 #include <stddef.h>
 #include <sys/types.h>
 #include <sys/stat.h>
-#ifdef linux
+#ifndef linux
+#include <sys/sysctl.h>
+#else
+#include <sys/sysinfo.h>
 #include <sys/sysmacros.h>
 #endif
 #include <fcntl.h>
@@ -52,7 +55,6 @@
 #include <sys/wait.h>
 #include <limits.h>
 #include <ctype.h>
-#include <sys/sysinfo.h>

 #ifndef FNM_EXTMATCH /* glibc extension */
 	#define FNM_EXTMATCH 0
@@ -5191,7 +5193,17 @@ int parse_mode(char *arg, mode_t *res)

 int get_physical_memory()
 {
+	/*
+	 * Long longs are used here because with PAE, a 32-bit
+	 * machine can have more than 4GB of physical memory
+	 *
+	 * sysconf(_SC_PHYS_PAGES) relies on /proc being mounted.
+	 * If it fails use sysinfo, if that fails return 0
+	 */
+	long long num_pages = sysconf(_SC_PHYS_PAGES);
+	long long page_size = sysconf(_SC_PAGESIZE);
 	int phys_mem;
+
 #ifndef linux
 	#ifdef HW_MEMSIZE
 		#define SYSCTL_PHYSMEM HW_MEMSIZE
@@ -5221,16 +5233,6 @@ int get_physical_memory()
 	}
   #undef SYSCTL_PHYSMEM
 #else
-	/*
-	 * Long longs are used here because with PAE, a 32-bit
-	 * machine can have more than 4GB of physical memory
-	 *
-	 * sysconf(_SC_PHYS_PAGES) relies on /proc being mounted.
-	 * If it fails use sysinfo, if that fails return 0
-	 */
-	long long num_pages = sysconf(_SC_PHYS_PAGES);
-	long long page_size = sysconf(_SC_PAGESIZE);
-
 	if(num_pages == -1 || page_size == -1) {
 		struct sysinfo sys;
 		int res = sysinfo(&sys);
diff --git a/squashfs-tools/mksquashfs.h b/squashfs-tools/mksquashfs.h
index 88d0b5c..1beefef 100644
--- a/squashfs-tools/mksquashfs.h
+++ b/squashfs-tools/mksquashfs.h
@@ -24,7 +24,6 @@
  * mksquashfs.h
  *
  */
-#include <pthread.h>

 struct dir_info {
 	char			*pathname;
diff --git a/squashfs-tools/pseudo.c b/squashfs-tools/pseudo.c
index f8fd529..48e6b27 100644
--- a/squashfs-tools/pseudo.c
+++ b/squashfs-tools/pseudo.c
@@ -30,7 +30,6 @@
 #include <errno.h>
 #include <string.h>
 #include <stdlib.h>
-#include <sys/stat.h>
 #include <sys/types.h>
 #include <sys/wait.h>
 #include <sys/stat.h>
diff --git a/squashfs-tools/unsquashfs.c b/squashfs-tools/unsquashfs.c
index 00615ce..c1a6183 100644
--- a/squashfs-tools/unsquashfs.c
+++ b/squashfs-tools/unsquashfs.c
@@ -38,7 +38,6 @@
 #include <sys/sysinfo.h>
 #include <sys/sysmacros.h>
 #endif
-
 #include <sys/types.h>
 #include <sys/time.h>
 #include <sys/resource.h>
@@ -1085,7 +1084,7 @@ int create_inode(char *pathname, struct inode *i)
 			break;
 		case SQUASHFS_SYMLINK_TYPE:
 		case SQUASHFS_LSYMLINK_TYPE: {
-			struct timespec times[2] = {
+			struct timeval times[2] = {
 				{ i->time, 0 },
 				{ i->time, 0 }
 			};
@@ -1104,8 +1103,7 @@ int create_inode(char *pathname, struct inode *i)
 				goto failed;
 			}

-			res = utimensat(AT_FDCWD, pathname, times,
-					AT_SYMLINK_NOFOLLOW);
+			res = lutimes(pathname, times);
 			if(res == -1) {
 				EXIT_UNSQUASH_STRICT("create_inode: failed to set time on "
 					"%s, because %s\n", pathname,
2019-09-10 21:02:51 +02:00
volth
7b8fb5c06c treewide: remove redundant quotes 2019-09-08 23:38:31 +00:00
Frederik Rietdijk
5f4734b1dd Merge remote-tracking branch 'upstream/gcc-8' into staging-next
Earlier the gcc8 branch was merged instead of the gcc-8 branch (note the dash)...
2019-09-08 20:44:26 +02:00
Ruud van Asseldonk
14d2c3669f squashfsTools: make Darwin patch apply to 4.4
I took the patch, and applied it on top of the previous squashfs-tools
commit that we packaged. It applied cleanly. Then I rebased that on top
of master, and resolved the conflicts. I'm not sure I resolved them
correctly though, I don't have access to Darwin. Somebody needs to
review this.
2019-09-07 19:16:57 +02:00
Ruud van Asseldonk
a60ee9a74c squashfsTools: make alignment patch apply to 4.4
I took the patch, and applied it on top of the previous squashfs-tools
commit that we packaged (which required editing one line in the patch,
as it assumed to be applied on top of the reproducibility patches). Then
I rebased that on top of master, resolved one conflict, and I formatted
a new patch for this.
2019-09-07 18:58:31 +02:00
Ruud van Asseldonk
442cf4f783 squashfsTools: 4.4dev_20180612 -> 4.4
A new release has been made upstream. Reproducibility issues were fixed
in that release, so we no longer need those patches. For a full overview
of the changes, see the 4.4-specific readme at [1].

The alignment patch no longer applies cleanly; I disabled it for now,
and I will try to restore it in a follow-up commit.

[1]: 52eb4c279c/README-4.4
2019-09-07 16:12:07 +02:00
Jonathan Ringer
44fe29b1bb gcsfuse: 0.23.0 -> 0.28.1 2019-09-07 01:51:29 -07:00
Jan Tojnar
f9237f3152
Merge branch 'master' into staging-next 2019-09-06 16:55:11 +02:00
Jan Tojnar
cdf426488b
Merge branch 'master' into staging-next
Fixed trivial conflicts caused by removing rec.
2019-09-06 03:20:09 +02:00
Johan Thomsen
161855c033 ceph: 14.2.1 -> 14.2.3 2019-09-05 14:33:29 +02:00
Johan Thomsen
fb22d67fa7 ceph: 13.2.4 -> 14.2.1
* remove kinetic
* release note
* add johanot as maintainer

nixos/ceph: create option for mgr_module_path
  - since the upstream default is no longer correct in v14

* fix module, default location for libexec has changed
* ceph: fix test
2019-09-04 16:17:18 +02:00
Kristoffer
85baedaca3 ceph: 12.2.7 -> 13.2.4
* maintain only one version
* ceph-client: init
* include ceph-volume python tool in output

nixos/ceph: extraConfig, fix test, wait for ceph-mgr to become active

* run ceph with disk group permission
* add extraConfig option for the global section
needed per cluster
* clear up how ceph.conf is generated
* fix ceph testcase
2019-09-04 16:01:42 +02:00
Franz Pletz
de85797565
Merge remote-tracking branch 'origin/master' into gcc-8 2019-09-03 22:15:07 +02:00
Franz Pletz
3a7a990ee9
irods: build with current version of llvm 2019-09-03 22:04:15 +02:00
Niklas Hambüchen
9e78f76ade treewide: Remove unnecessary --disable-static (#66759)
* freetype: Remove unnecessary `--disable-static`.

The true-by-default `dontDisableStatic` already takes care of it.

Fixes freetype not being overridable to have static libs.

* treewide: Remove unnecessary `--disable-static`.

The true-by-default `dontDisableStatic` already takes care of it.

Fixes these packages not being overridable to have static libs.
2019-08-31 08:10:53 -04:00
volth
7bb6b373ab treewide: name -> pname (#67513) 2019-08-31 07:41:22 -04:00
Frederik Rietdijk
151f52bf96 e2fsprogs: disable failing tests (#65471)
Disable several tests that often fail on Hydra but not locally.
2019-08-31 10:27:57 +02:00
Frederik Rietdijk
ad1d58c622 Merge staging-next into staging 2019-08-31 10:04:20 +02:00
Frederik Rietdijk
fc74ba8291 Merge master into staging-next 2019-08-31 09:50:38 +02:00
Jonathan Ringer
5fe68fd142 pythonPackage.nixpart0: disable for python3 2019-08-30 12:35:42 +09:00
volth
08f68313a4 treewide: remove redundant rec 2019-08-28 11:07:32 +00:00
Robin Gloster
616b8343c4
Merge remote-tracking branch 'upstream/master' into gcc-8 2019-08-25 18:55:46 +02:00
Vladimír Čunát
985d1ac425
Merge branch 'master' into staging-next
There were several more conflicts from name -> pname+version;
all auto-solved by kdiff3, hopefully OK.

Hydra nixpkgs: ?compare=1538611
2019-08-25 14:57:11 +02:00
Vladimír Čunát
2e6bf42a22
Merge branch 'master' into staging-next
There ver very many conflicts, basically all due to
name -> pname+version.  Fortunately, almost everything was auto-resolved
by kdiff3, and for now I just fixed up a couple evaluation problems,
as verified by the tarball job.  There might be some fallback to these
conflicts, but I believe it should be minimal.

Hydra nixpkgs: ?compare=1538299
2019-08-24 08:55:37 +02:00
Edmund Wu
d8601dc4f9
bcachefs-tools: 2019-07-13 -> 2019-08-21 2019-08-23 22:38:00 -04:00
Michael Raskin
0cbeac4f66
Merge pull request #66736 from markuskowa/upd-gluster
glusterfs: 4.0 -> 6.5
2019-08-20 08:08:57 +00:00
R. RyanTM
daf83f7f06 fuse-overlayfs: 0.4.1 -> 0.5.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/fuse-overlayfs/versions
2019-08-19 01:55:14 -07:00
Markus Kowalewski
830218cc64
glusterfs: 4.0 -> 6.5
* remove patches (fixed upstream)
* python2 -> python3
2019-08-18 18:57:47 +02:00
Frederik Rietdijk
f65aa21bb2 Merge master into staging-next 2019-08-18 12:53:44 +02:00
Marek Mahut
09740b8931
Merge pull request #66784 from r-ryantm/auto-update/avfs
avfs: 1.1.0 -> 1.1.1
2019-08-17 23:06:13 +02:00
R. RyanTM
e7c48e998e avfs: 1.1.0 -> 1.1.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/avfs/versions
2019-08-17 12:07:57 -07:00
R. RyanTM
acaacd395e btrfs-progs: 5.1.1 -> 5.2.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/btrfs-progs/versions
2019-08-17 09:48:13 -07:00
volth
c814d72b51 treewide: name -> pname 2019-08-17 10:54:38 +00:00
Frederik Rietdijk
fe9a3e3e63 Merge staging-next into staging 2019-08-17 09:39:23 +02:00
ealasu
3b23c5fdf1 apfs-fuse: init at 2019-07-23 2019-08-16 12:04:26 -07:00
volth
46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00
Marek Mahut
8c1d78aa4a
Merge pull request #62182 from dtzWill/update/moosefs-3.0.105
moosefs: 3.0.104 -> 3.0.105
2019-08-12 19:52:08 +02:00
Frederik Rietdijk
55e4555b77 Merge master into staging-next 2019-08-01 09:42:54 +02:00
Dominik Xaver Hörl
064ddec598 android-file-transfer: fix building with qt
Use mkDerivation has instead of stdenv.mkDerivation (see #54525).
2019-07-31 18:47:47 +02:00
Orivej Desh
32fbbc6f9b Merge master into staging 2019-07-25 09:23:21 +00:00
Luke Petre
14be42251c squashfuse - fix sha for 0.1.103
This sha was from 0.1.101

Before:
```
    rev = "540204955134eee44201d50132a5f66a246bcfaf";
    sha256 = "07jv4qjjz9ky3mw3p5prgs19g1bna9dcd7jjdz8083s1wyipdgcq";

these paths will be fetched (2.21 MiB download, 12.08 MiB unpacked):
  /nix/store/847cqb062fl6j0vxp2mk3kx392711kyw-pcre-8.43
  /nix/store/cb9f9d1a1gg9kyjb5bzaxwg7zjfb1wrs-fuse-2.9.9
  /nix/store/gnkgv4i8kkn6zf1d6v7bzmsf8ksv3yys-lzo-2.10
  /nix/store/hl4hc5i5x8dv8p5l09mb4i7p8d8kfy9n-zstd-1.4.0
  /nix/store/hzjx5kj1s5a5aj28wsk22vpggs1jcqnw-util-linux-2.33.1-bin
  /nix/store/mki5p8408jklwf0znj9160r4msjzglk3-lz4-1.8.3
  /nix/store/mzvffy1yvzq8mhygga1r7q0npc7qcdnb-gnugrep-3.3
  /nix/store/rqmcbh8hxms5pc92z4namrqx8hanfjyl-util-linux-2.33.1
  /nix/store/x16x3l0xjad9mbyvn6405y340l28iwcq-squashfuse-0.1.103
copying path '/nix/store/mki5p8408jklwf0znj9160r4msjzglk3-lz4-1.8.3' from 'https://cache.nixos.org'...
copying path '/nix/store/gnkgv4i8kkn6zf1d6v7bzmsf8ksv3yys-lzo-2.10' from 'https://cache.nixos.org'...
copying path '/nix/store/847cqb062fl6j0vxp2mk3kx392711kyw-pcre-8.43' from 'https://cache.nixos.org'...
copying path '/nix/store/rqmcbh8hxms5pc92z4namrqx8hanfjyl-util-linux-2.33.1' from 'https://cache.nixos.org'...
copying path '/nix/store/mzvffy1yvzq8mhygga1r7q0npc7qcdnb-gnugrep-3.3' from 'https://cache.nixos.org'...
copying path '/nix/store/hzjx5kj1s5a5aj28wsk22vpggs1jcqnw-util-linux-2.33.1-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/hl4hc5i5x8dv8p5l09mb4i7p8d8kfy9n-zstd-1.4.0' from 'https://cache.nixos.org'...
copying path '/nix/store/cb9f9d1a1gg9kyjb5bzaxwg7zjfb1wrs-fuse-2.9.9' from 'https://cache.nixos.org'...
copying path '/nix/store/x16x3l0xjad9mbyvn6405y340l28iwcq-squashfuse-0.1.103' from 'https://cache.nixos.org'...
/nix/store/x16x3l0xjad9mbyvn6405y340l28iwcq-squashfuse-0.1.103

-bash-4.4# ./result/bin/squashfuse_ll -h
squashfuse 0.1.101 (c) 2012 Dave Vasilevsky
```

After:
```
    rev = "540204955134eee44201d50132a5f66a246bcfaf";
    sha256 = "062s77y32p80vc24a79z31g90b9wxzvws1xvicgx5fn1pd0xa0q6";

these derivations will be built:
  /nix/store/kqa03vhiazr4x5bsmn8k7q2ld2hmx44z-source.drv
  /nix/store/gcl771ydc882l7vnw5vadpnr4xni3hdh-squashfuse-0.1.103.drv
these paths will be fetched (55.13 MiB download, 252.08 MiB unpacked):
  /nix/store/0bjp89ji70xl81j55wg2ixkf9xmaijcv-bison-3.3.2
  /nix/store/0dsk1x8j94pzd65fnysjc6wa1zad1s3d-nghttp2-1.38.0
  /nix/store/2czn8xhnpx82802v4lww80r4q6s3xhyk-patch-2.7.6
  /nix/store/31raqw28q43v4spkfzsiiihqx2jm5a8i-unzip-6.0
  /nix/store/3h8wyghnjzk8hn4f5zhwvvlwq9xrpry8-expand-response-params
  /nix/store/3k6hy33b1dkdfldii7s5f4vy9lll74x5-mirrors-list
  /nix/store/5c5yyihla8kzzy82sa1bf34m61isfzm1-linux-headers-4.19.16
  /nix/store/6a1djj4dvsd8bdvs544krj64zlq2d1xf-gcc-7.4.0
  /nix/store/6yg0jj8x9agnzqh94nxxlfwjjxjn2z35-gnumake-4.2.1
  /nix/store/6yjpyqkx6d9k5f2s2g8h9kz40q6rz1yx-binutils-2.31.1
  /nix/store/7vhy5372gjpfj9day5wrvch54mwj4l8d-stdenv-linux
  /nix/store/96sxibafi2h67xljsgkh9ix2j616iqrd-nghttp2-1.38.0-dev
  /nix/store/b2fy54j80bizmnfaqxy3rl0vk2006jm4-gawk-4.2.1
  /nix/store/bz73l5rgz7wffmfxwqnsdz48vzh7il95-c-ares-1.15.0
  /nix/store/c8ifvpkrr7lgr3j475gabqzs5bm8sk4z-binutils-wrapper-2.31.1
  /nix/store/dd6g1cvqk791l7zqznfhfqi1pgy56qdx-curl-7.64.1-dev
  /nix/store/dmjc6zqbr5h36rw3jy9qzcnl3mgnl1n8-hook
  /nix/store/dsjpr08xs2bcr9bphcmd53m8if31z2kk-diffutils-3.7
  /nix/store/fzdm7x4j4nf8d4a8lrcabbf4zi7s0ys6-libtool-2.4.6
  /nix/store/g6rhmp2xcdzgibhx1i4b32gvsxbcqj09-gnum4-1.4.18
  /nix/store/gk7whjwi6zg4a94v3pk5fk108m2x4d6z-pkg-config-0.29.2
  /nix/store/gx3xv0vnfrxf7zfb8h2hnw9pzzkygixy-libssh2-1.8.2-dev
  /nix/store/h9n269c03cky1q0h30y88px26fxmbwv7-nghttp2-1.38.0-bin
  /nix/store/i12myp4crs9blcjxbs598di17cp018h9-openssl-1.0.2r-bin
  /nix/store/i546smf3my4rvn2ymxarzzgivcvwksly-openssl-1.0.2r-dev
  /nix/store/j2mb6w72ycxpmabhhprbz3biczfnr27r-findutils-4.6.0
  /nix/store/jg5rlm10r0yvdmx0g8nl5z2rqjndfdzd-curl-7.64.1-bin
  /nix/store/jh11qj0kjsv5bslrdvn7qdcacah54d1j-xz-5.2.4-dev
  /nix/store/jyqagsh6yhfbx5w0xspwi91lfr3nyvda-stdenv-linux
  /nix/store/n0pjpb8gq2bd7nadav6ziz3xz7rvxx6z-libkrb5-1.17-dev
  /nix/store/nsnwjpp0yihpjhh9036hljzihjkawrip-ed-1.15
  /nix/store/prnm6wrsgfqcs684ymprnjvn1w6g10jg-lz4-1.8.3-dev
  /nix/store/ra3441ikg993p85kw3p1cnnm1g73h6hk-gcc-wrapper-7.4.0
  /nix/store/riaglhp3igiyi5r9ahg9yw9p6nb7iwi3-curl-7.64.1-man
  /nix/store/ry56l2m6y8ajx7613vvq17rqgffzga6f-gettext-0.19.8.1
  /nix/store/sahaj6vg42sfvdpmv43l4h4hxqaj4h1g-autoconf-2.69
  /nix/store/skc18xbf3sb6ik2q201qw42hjg8fq9r1-libev-4.25
  /nix/store/wzn5g91zj8ajqzdwwlyxcwaw4y1bj04h-perl-5.28.2
  /nix/store/xvq0kcfh5z66j6ir1fskn0cx3n3qbc44-automake-1.16.1
  /nix/store/yhm526ifvk6cb217r28h8m8vv2n3qzp8-libtool-2.4.6-lib
  /nix/store/yjdnj9pcjgb09xif4ngmf13vb8npklys-glibc-2.27-dev
  /nix/store/yya1b8cb81jv4i348f4kpaspafs1xqhi-zlib-1.2.11-dev
  /nix/store/zw60vbl6khdzcx8vwivm7gwz4bvam3xy-patchelf-0.9
copying path '/nix/store/b2fy54j80bizmnfaqxy3rl0vk2006jm4-gawk-4.2.1' from 'https://cache.nixos.org'...
copying path '/nix/store/6yjpyqkx6d9k5f2s2g8h9kz40q6rz1yx-binutils-2.31.1' from 'https://cache.nixos.org'...
copying path '/nix/store/bz73l5rgz7wffmfxwqnsdz48vzh7il95-c-ares-1.15.0' from 'https://cache.nixos.org'...
copying path '/nix/store/jg5rlm10r0yvdmx0g8nl5z2rqjndfdzd-curl-7.64.1-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/riaglhp3igiyi5r9ahg9yw9p6nb7iwi3-curl-7.64.1-man' from 'https://cache.nixos.org'...
copying path '/nix/store/dsjpr08xs2bcr9bphcmd53m8if31z2kk-diffutils-3.7' from 'https://cache.nixos.org'...
copying path '/nix/store/nsnwjpp0yihpjhh9036hljzihjkawrip-ed-1.15' from 'https://cache.nixos.org'...
copying path '/nix/store/3h8wyghnjzk8hn4f5zhwvvlwq9xrpry8-expand-response-params' from 'https://cache.nixos.org'...
copying path '/nix/store/j2mb6w72ycxpmabhhprbz3biczfnr27r-findutils-4.6.0' from 'https://cache.nixos.org'...
copying path '/nix/store/g6rhmp2xcdzgibhx1i4b32gvsxbcqj09-gnum4-1.4.18' from 'https://cache.nixos.org'...
copying path '/nix/store/6yg0jj8x9agnzqh94nxxlfwjjxjn2z35-gnumake-4.2.1' from 'https://cache.nixos.org'...
copying path '/nix/store/0bjp89ji70xl81j55wg2ixkf9xmaijcv-bison-3.3.2' from 'https://cache.nixos.org'...
copying path '/nix/store/skc18xbf3sb6ik2q201qw42hjg8fq9r1-libev-4.25' from 'https://cache.nixos.org'...
copying path '/nix/store/ry56l2m6y8ajx7613vvq17rqgffzga6f-gettext-0.19.8.1' from 'https://cache.nixos.org'...
copying path '/nix/store/n0pjpb8gq2bd7nadav6ziz3xz7rvxx6z-libkrb5-1.17-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/gx3xv0vnfrxf7zfb8h2hnw9pzzkygixy-libssh2-1.8.2-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/yhm526ifvk6cb217r28h8m8vv2n3qzp8-libtool-2.4.6-lib' from 'https://cache.nixos.org'...
copying path '/nix/store/5c5yyihla8kzzy82sa1bf34m61isfzm1-linux-headers-4.19.16' from 'https://cache.nixos.org'...
copying path '/nix/store/prnm6wrsgfqcs684ymprnjvn1w6g10jg-lz4-1.8.3-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/yjdnj9pcjgb09xif4ngmf13vb8npklys-glibc-2.27-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/3k6hy33b1dkdfldii7s5f4vy9lll74x5-mirrors-list' from 'https://cache.nixos.org'...
copying path '/nix/store/c8ifvpkrr7lgr3j475gabqzs5bm8sk4z-binutils-wrapper-2.31.1' from 'https://cache.nixos.org'...
copying path '/nix/store/6a1djj4dvsd8bdvs544krj64zlq2d1xf-gcc-7.4.0' from 'https://cache.nixos.org'...
copying path '/nix/store/0dsk1x8j94pzd65fnysjc6wa1zad1s3d-nghttp2-1.38.0' from 'https://cache.nixos.org'...
copying path '/nix/store/ra3441ikg993p85kw3p1cnnm1g73h6hk-gcc-wrapper-7.4.0' from 'https://cache.nixos.org'...
copying path '/nix/store/h9n269c03cky1q0h30y88px26fxmbwv7-nghttp2-1.38.0-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/fzdm7x4j4nf8d4a8lrcabbf4zi7s0ys6-libtool-2.4.6' from 'https://cache.nixos.org'...
copying path '/nix/store/96sxibafi2h67xljsgkh9ix2j616iqrd-nghttp2-1.38.0-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/2czn8xhnpx82802v4lww80r4q6s3xhyk-patch-2.7.6' from 'https://cache.nixos.org'...
copying path '/nix/store/zw60vbl6khdzcx8vwivm7gwz4bvam3xy-patchelf-0.9' from 'https://cache.nixos.org'...
copying path '/nix/store/wzn5g91zj8ajqzdwwlyxcwaw4y1bj04h-perl-5.28.2' from 'https://cache.nixos.org'...
copying path '/nix/store/gk7whjwi6zg4a94v3pk5fk108m2x4d6z-pkg-config-0.29.2' from 'https://cache.nixos.org'...
copying path '/nix/store/sahaj6vg42sfvdpmv43l4h4hxqaj4h1g-autoconf-2.69' from 'https://cache.nixos.org'...
copying path '/nix/store/xvq0kcfh5z66j6ir1fskn0cx3n3qbc44-automake-1.16.1' from 'https://cache.nixos.org'...
copying path '/nix/store/i12myp4crs9blcjxbs598di17cp018h9-openssl-1.0.2r-bin' from 'https://cache.nixos.org'...
copying path '/nix/store/dmjc6zqbr5h36rw3jy9qzcnl3mgnl1n8-hook' from 'https://cache.nixos.org'...
copying path '/nix/store/i546smf3my4rvn2ymxarzzgivcvwksly-openssl-1.0.2r-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/7vhy5372gjpfj9day5wrvch54mwj4l8d-stdenv-linux' from 'https://cache.nixos.org'...
copying path '/nix/store/jyqagsh6yhfbx5w0xspwi91lfr3nyvda-stdenv-linux' from 'https://cache.nixos.org'...
copying path '/nix/store/31raqw28q43v4spkfzsiiihqx2jm5a8i-unzip-6.0' from 'https://cache.nixos.org'...
copying path '/nix/store/jh11qj0kjsv5bslrdvn7qdcacah54d1j-xz-5.2.4-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/yya1b8cb81jv4i348f4kpaspafs1xqhi-zlib-1.2.11-dev' from 'https://cache.nixos.org'...
copying path '/nix/store/dd6g1cvqk791l7zqznfhfqi1pgy56qdx-curl-7.64.1-dev' from 'https://cache.nixos.org'...
building '/nix/store/kqa03vhiazr4x5bsmn8k7q2ld2hmx44z-source.drv'...

trying 5402049551.tar.gz
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   157    0   157    0     0    501      0 --:--:-- --:--:-- --:--:--   501
100 58730    0 58730    0     0  56362      0 --:--:--  0:00:01 --:--:--  284k
unpacking source archive /tmp/nix-build-source.drv-0/540204955134eee44201d50132a5f66a246bcfaf.tar.gz
building '/nix/store/gcl771ydc882l7vnw5vadpnr4xni3hdh-squashfuse-0.1.103.drv'...
unpacking sources
unpacking source archive /nix/store/3634l5iajqgh2q1nj5w4xkk8kb9rb9mh-source
source root is source
patching sources
autoreconfPhase
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal --force -I m4 --install
aclocal: installing 'm4/pkg.m4' from '/nix/store/gk7whjwi6zg4a94v3pk5fk108m2x4d6z-pkg-config-0.29.2/share/aclocal/pkg.m4'
aclocal: installing 'm4/libtool.m4' from '/nix/store/fzdm7x4j4nf8d4a8lrcabbf4zi7s0ys6-libtool-2.4.6/share/aclocal/libtool.m4'
aclocal: installing 'm4/ltoptions.m4' from '/nix/store/fzdm7x4j4nf8d4a8lrcabbf4zi7s0ys6-libtool-2.4.6/share/aclocal/ltoptions.m4'
aclocal: installing 'm4/ltsugar.m4' from '/nix/store/fzdm7x4j4nf8d4a8lrcabbf4zi7s0ys6-libtool-2.4.6/share/aclocal/ltsugar.m4'
aclocal: installing 'm4/ltversion.m4' from '/nix/store/fzdm7x4j4nf8d4a8lrcabbf4zi7s0ys6-libtool-2.4.6/share/aclocal/ltversion.m4'
aclocal: installing 'm4/lt~obsolete.m4' from '/nix/store/fzdm7x4j4nf8d4a8lrcabbf4zi7s0ys6-libtool-2.4.6/share/aclocal/lt~obsolete.m4'
autoreconf: configure.ac: tracing
autoreconf: configure.ac: creating directory build-aux
autoreconf: running: libtoolize --copy --force
libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, 'build-aux'.
libtoolize: copying file 'build-aux/ltmain.sh'
libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'.
libtoolize: copying file 'm4/libtool.m4'
libtoolize: copying file 'm4/ltoptions.m4'
libtoolize: copying file 'm4/ltsugar.m4'
libtoolize: copying file 'm4/ltversion.m4'
libtoolize: copying file 'm4/lt~obsolete.m4'
autoreconf: running: /nix/store/sahaj6vg42sfvdpmv43l4h4hxqaj4h1g-autoconf-2.69/bin/autoconf --force
autoreconf: running: /nix/store/sahaj6vg42sfvdpmv43l4h4hxqaj4h1g-autoconf-2.69/bin/autoheader --force
autoreconf: running: automake --add-missing --copy --force-missing
configure.ac:8: installing 'build-aux/ar-lib'
configure.ac:8: installing 'build-aux/compile'
configure.ac:5: installing 'build-aux/config.guess'
configure.ac:5: installing 'build-aux/config.sub'
configure.ac:6: installing 'build-aux/install-sh'
configure.ac:6: installing 'build-aux/missing'
Makefile.am: installing 'build-aux/depcomp'
autoreconf: Leaving directory `.'
configuring
fixing libtool script ./build-aux/ltmain.sh
configure flags: --disable-static --disable-dependency-tracking --prefix=/nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking target system type... x86_64-pc-linux-gnu
checking for a BSD-compatible install... /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether make supports nested variables... (cached) yes
checking whether make supports the include directive... yes (GNU style)
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking dependency style of gcc... none
checking the archiver (ar) interface... ar
checking how to print strings... printf
checking for a sed that does not truncate output... /nix/store/cch4zpdfh5acdx913dfvwjlvjy0a0ajz-gnused-4.7/bin/sed
checking for grep that handles long lines and -e... /nix/store/mzvffy1yvzq8mhygga1r7q0npc7qcdnb-gnugrep-3.3/bin/grep
checking for egrep... /nix/store/mzvffy1yvzq8mhygga1r7q0npc7qcdnb-gnugrep-3.3/bin/grep -E
checking for fgrep... /nix/store/mzvffy1yvzq8mhygga1r7q0npc7qcdnb-gnugrep-3.3/bin/grep -F
checking for ld used by gcc... ld
checking if the linker (ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... nm
checking the name lister (nm) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
checking for ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse nm output from gcc object... ok
checking for sysroot... no
checking for a working dd... /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/dd
checking how to truncate binary pipes... /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/dd bs=4096 count=1
./configure: line 6862: /usr/bin/file: No such file or directory
checking for mt... no
checking if : is a manifest tool... no
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... no
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking for pkg-config... /nix/store/gk7whjwi6zg4a94v3pk5fk108m2x4d6z-pkg-config-0.29.2/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for gawk... (cached) gawk
checking for a sed that does not truncate output... (cached) /nix/store/cch4zpdfh5acdx913dfvwjlvjy0a0ajz-gnused-4.7/bin/sed
checking how to run the C preprocessor... gcc -E
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking for option for POSIX-2001 preprocessor... none
checking how to enable all compiler warnings... -Wall
checking for QNX makedev... no
checking for sys/mkdev.h... no
checking for sys/sysmacros.h... yes
configure: checking for definition needed by makedev
checking if makedev works without changes... yes
configure: checking for definition needed by pread
checking if pread works without changes... no
checking if pread requires changing _DARWIN_C_SOURCE... no
checking if pread requires changing _NETBSD_SOURCE... no
checking if pread requires changing _XOPEN_SOURCE... yes
configure: checking for definition needed by S_IFSOCK
checking if S_IFSOCK works without changes... no
checking if S_IFSOCK requires changing _DARWIN_C_SOURCE... no
checking if S_IFSOCK requires changing _NETBSD_SOURCE... no
checking if S_IFSOCK requires changing _XOPEN_SOURCE... yes
checking for attr/xattr.h... no
configure: checking for definition needed by ENOATTR
checking if ENOATTR works without changes... no
checking if ENOATTR requires changing _DARWIN_C_SOURCE... no
checking if ENOATTR requires changing _NETBSD_SOURCE... no
checking if ENOATTR requires changing _XOPEN_SOURCE... no
checking if ENOATTR requires changing _BSD_SOURCE... no
checking if ENOATTR requires changing _GNU_SOURCE... no
checking if ENOATTR requires changing _POSIX_C_SOURCE... no
checking for library containing uncompress... -lz
checking zlib.h usability... yes
checking zlib.h presence... yes
checking for zlib.h... yes
checking for liblzma... yes
checking for library containing lzma_stream_buffer_decode... none required
checking lzma.h usability... yes
checking lzma.h presence... yes
checking for lzma.h... yes
checking for library containing lzo1x_decompress_safe... -llzo2
checking lzo/lzo1x.h usability... yes
checking lzo/lzo1x.h presence... yes
checking for lzo/lzo1x.h... yes
checking for library containing LZ4_decompress_safe... -llz4
checking lz4.h usability... yes
checking lz4.h presence... yes
checking for lz4.h... yes
checking for library containing ZSTD_decompress... -lzstd
checking zstd.h usability... yes
checking zstd.h presence... yes
checking for zstd.h... yes
checking for fuse >= 2.5... yes
checking for FUSE library... already present
checking for FUSE header... yes
checking whether fuse_lowlevel_new is declared... yes
checking for fuse_lowlevel_new... yes
checking whether fuse_add_direntry is declared... yes
checking whether fuse_add_dirent is declared... no
checking whether fuse_daemonize is declared... yes
checking whether fuse_session_remove_chan is declared... yes
checking for two-argument fuse_unmount... yes
checking for position argument to FUSE xattr operations... no
checking if make supports export... yes
checking for __le16... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating squashfuse.pc
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands

Compression support ....... : ZLIB XZ LZO LZ4 ZSTD
High-level FUSE driver .... : yes
Low-level FUSE driver ..... : yes
Demo program .............. : yes

building
build flags: SHELL=/nix/store/2ch3pwfv40ls6qhdmzwsz9wky9pq6cyl-bash-4.4-p23/bin/bash
make  all-am
make[1]: Entering directory '/tmp/nix-build-squashfuse-0.1.103.drv-0/source'
  CC       squashfuse-hl.o
SED="/nix/store/cch4zpdfh5acdx913dfvwjlvjy0a0ajz-gnused-4.7/bin/sed" ./gen_swap.sh ./squashfs_fs.h
  CC       libsquashfuse_la-swap.lo
  CC       libsquashfuse_la-cache.lo
  CC       libsquashfuse_la-table.lo
  CC       libsquashfuse_la-dir.lo
  CC       libsquashfuse_la-file.lo
  CC       libsquashfuse_la-fs.lo
  CC       libsquashfuse_la-decompress.lo
  CC       libsquashfuse_la-xattr.lo
  CC       libsquashfuse_la-hash.lo
  CC       libsquashfuse_la-stack.lo
  CC       libsquashfuse_la-traverse.lo
  CC       libsquashfuse_la-util.lo
  CC       libsquashfuse_la-nonstd-pread.lo
  CC       libsquashfuse_la-nonstd-stat.lo
  CCLD     libsquashfuse.la
  CC       libfuseprivate_la-fuseprivate.lo
  CC       libfuseprivate_la-nonstd-makedev.lo
  CC       libfuseprivate_la-nonstd-enoattr.lo
  CCLD     libfuseprivate.la
  CCLD     squashfuse
  CC       squashfuse_ll-ll.o
  CC       squashfuse_ll-ll_inode.o
  CC       squashfuse_ll-nonstd-daemon.o
  CCLD     squashfuse_ll
  CC       ls.o
  CCLD     squashfuse_ls
  CC       squashfuse_extract-extract.o
extract.c: In function 'sqfs_stat':
extract.c:51:17: warning: implicit declaration of function 'sqfs_makedev'; did you mean 'sqfs_mode'? [-Wimplicit-function-declaration]
   st->st_rdev = sqfs_makedev(inode->xtra.dev.major,
                 ^~~~~~~~~~~~
                 sqfs_mode
  CCLD     squashfuse_extract
make[1]: Leaving directory '/tmp/nix-build-squashfuse-0.1.103.drv-0/source'
installing
install flags: SHELL=/nix/store/2ch3pwfv40ls6qhdmzwsz9wky9pq6cyl-bash-4.4-p23/bin/bash install
make[1]: Entering directory '/tmp/nix-build-squashfuse-0.1.103.drv-0/source'
 /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/mkdir -p '/nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib'
 /nix/store/2ch3pwfv40ls6qhdmzwsz9wky9pq6cyl-bash-4.4-p23/bin/bash ./libtool   --mode=install /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/install -c   libsquashfuse.la libfuseprivate.la '/nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib'
libtool: install: /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/install -c .libs/libsquashfuse.so.0.0.0 /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib/libsquashfuse.so.0.0.0
libtool: install: (cd /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib && { ln -s -f libsquashfuse.so.0.0.0 libsquashfuse.so.0 || { rm -f libsquashfuse.so.0 && ln -s libsquashfuse.so.0.0.0 libsquashfuse.so.0; }; })
libtool: install: (cd /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib && { ln -s -f libsquashfuse.so.0.0.0 libsquashfuse.so || { rm -f libsquashfuse.so && ln -s libsquashfuse.so.0.0.0 libsquashfuse.so; }; })
libtool: install: /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/install -c .libs/libsquashfuse.lai /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib/libsquashfuse.la
libtool: install: /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/install -c .libs/libfuseprivate.so.0.0.0 /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib/libfuseprivate.so.0.0.0
libtool: install: (cd /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib && { ln -s -f libfuseprivate.so.0.0.0 libfuseprivate.so.0 || { rm -f libfuseprivate.so.0 && ln -s libfuseprivate.so.0.0.0 libfuseprivate.so.0; }; })
libtool: install: (cd /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib && { ln -s -f libfuseprivate.so.0.0.0 libfuseprivate.so || { rm -f libfuseprivate.so && ln -s libfuseprivate.so.0.0.0 libfuseprivate.so; }; })
libtool: install: /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/install -c .libs/libfuseprivate.lai /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib/libfuseprivate.la
libtool: finish: PATH="/nix/store/sahaj6vg42sfvdpmv43l4h4hxqaj4h1g-autoconf-2.69/bin:/nix/store/xvq0kcfh5z66j6ir1fskn0cx3n3qbc44-automake-1.16.1/bin:/nix/store/ry56l2m6y8ajx7613vvq17rqgffzga6f-gettext-0.19.8.1/bin:/nix/store/fzdm7x4j4nf8d4a8lrcabbf4zi7s0ys6-libtool-2.4.6/bin:/nix/store/g6rhmp2xcdzgibhx1i4b32gvsxbcqj09-gnum4-1.4.18/bin:/nix/store/gk7whjwi6zg4a94v3pk5fk108m2x4d6z-pkg-config-0.29.2/bin:/nix/store/zw60vbl6khdzcx8vwivm7gwz4bvam3xy-patchelf-0.9/bin:/nix/store/ra3441ikg993p85kw3p1cnnm1g73h6hk-gcc-wrapper-7.4.0/bin:/nix/store/6a1djj4dvsd8bdvs544krj64zlq2d1xf-gcc-7.4.0/bin:/nix/store/ngf4xva3wvw1m0pb84v9h4jgl784lxkh-glibc-2.27-bin/bin:/nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin:/nix/store/c8ifvpkrr7lgr3j475gabqzs5bm8sk4z-binutils-wrapper-2.31.1/bin:/nix/store/6yjpyqkx6d9k5f2s2g8h9kz40q6rz1yx-binutils-2.31.1/bin:/nix/store/ngf4xva3wvw1m0pb84v9h4jgl784lxkh-glibc-2.27-bin/bin:/nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin:/nix/store/mki5p8408jklwf0znj9160r4msjzglk3-lz4-1.8.3/bin:/nix/store/hx8iii059gcfp2530kj453cbbx55rqlw-xz-5.2.4-bin/bin:/nix/store/hl4hc5i5x8dv8p5l09mb4i7p8d8kfy9n-zstd-1.4.0/bin:/nix/store/cb9f9d1a1gg9kyjb5bzaxwg7zjfb1wrs-fuse-2.9.9/bin:/nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin:/nix/store/j2mb6w72ycxpmabhhprbz3biczfnr27r-findutils-4.6.0/bin:/nix/store/dsjpr08xs2bcr9bphcmd53m8if31z2kk-diffutils-3.7/bin:/nix/store/cch4zpdfh5acdx913dfvwjlvjy0a0ajz-gnused-4.7/bin:/nix/store/mzvffy1yvzq8mhygga1r7q0npc7qcdnb-gnugrep-3.3/bin:/nix/store/b2fy54j80bizmnfaqxy3rl0vk2006jm4-gawk-4.2.1/bin:/nix/store/qxpnd7kdz119phdvhfica39pzbyi05sl-gnutar-1.32/bin:/nix/store/iyjjp49s7w3lm2w9n2p26vxzg0qyhbpk-gzip-1.10/bin:/nix/store/11hv812f14jzb3xjgb3g48z8b5rr71z9-bzip2-1.0.6.0.1-bin/bin:/nix/store/6yg0jj8x9agnzqh94nxxlfwjjxjn2z35-gnumake-4.2.1/bin:/nix/store/2ch3pwfv40ls6qhdmzwsz9wky9pq6cyl-bash-4.4-p23/bin:/nix/store/2czn8xhnpx82802v4lww80r4q6s3xhyk-patch-2.7.6/bin:/nix/store/hx8iii059gcfp2530kj453cbbx55rqlw-xz-5.2.4-bin/bin:/sbin" ldconfig -n /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the '-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the 'LD_RUN_PATH' environment variable
     during linking
   - use the '-Wl,-rpath -Wl,LIBDIR' linker flag

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
 /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/mkdir -p '/nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/bin'
  /nix/store/2ch3pwfv40ls6qhdmzwsz9wky9pq6cyl-bash-4.4-p23/bin/bash ./libtool   --mode=install /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/install -c squashfuse squashfuse_ll '/nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/bin'
libtool: install: /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/install -c .libs/squashfuse /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/bin/squashfuse
libtool: install: /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/install -c .libs/squashfuse_ll /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/bin/squashfuse_ll
 /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/mkdir -p '/nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/include'
 /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/install -c -m 644 squashfuse.h squashfs_fs.h '/nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/include'
 /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/mkdir -p '/nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/share/man/man1'
 /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/install -c -m 644 squashfuse.1 '/nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/share/man/man1'
 /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/mkdir -p '/nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib/pkgconfig'
 /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/install -c -m 644 squashfuse.pc '/nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib/pkgconfig'
make[1]: Leaving directory '/tmp/nix-build-squashfuse-0.1.103.drv-0/source'
post-installation fixup
shrinking RPATHs of ELF executables and libraries in /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103
shrinking /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib/libsquashfuse.so.0.0.0
shrinking /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib/libfuseprivate.so.0.0.0
shrinking /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/bin/squashfuse_ll
shrinking /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/bin/squashfuse
gzipping man pages under /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/share/man/
strip is /nix/store/6yjpyqkx6d9k5f2s2g8h9kz40q6rz1yx-binutils-2.31.1/bin/strip
stripping (with command strip and flags -S) in /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib  /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/bin
patching script interpreter paths in /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103
checking for references to /tmp/nix-build-squashfuse-0.1.103.drv-0/ in /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103...
/nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103

-bash-4.4# ./result/bin/squashfuse_ll -h
squashfuse 0.1.103 (c) 2012 Dave Vasilevsky
```
2019-07-23 00:16:21 +01:00
Frederik Rietdijk
b11049d562 Merge staging-next into staging 2019-07-22 14:16:15 +02:00
markuskowa
e21cb9933b
Merge pull request #65205 from r-ryantm/auto-update/yandex-disk
yandex-disk: 0.1.5.1010 -> 0.1.5.1039
2019-07-21 21:38:41 +02:00
R. RyanTM
6b62be5eff yandex-disk: 0.1.5.1010 -> 0.1.5.1039
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/yandex-disk/versions
2019-07-20 17:04:20 -07:00
R. RyanTM
72039f1f38 s3backer: 1.5.1 -> 1.5.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/s3backer/versions
2019-07-20 08:55:38 -07:00
R. RyanTM
b42edbcfa7 e2fsprogs: 1.45.2 -> 1.45.3
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/e2fsprogs/versions
2019-07-20 09:41:18 +02:00
worldofpeace
99bd9bf5aa
Merge pull request #64614 from cw789/update_gocryptfs
gocryptfs: 1.6.1 -> 1.7
2019-07-16 13:40:52 -04:00
cw
dccd1e9d05 gocryptfs: 1.6.1 -> 1.7
- Use pname instead of name
- Add patch for Darwin build
2019-07-16 08:17:17 +02:00
Vladyslav M
d0453ef9ce
bcachefs: 2019-07-13 (#64732)
bcachefs: 2019-07-13
2019-07-15 21:53:45 +03:00
R. RyanTM
37c16d0e60 bindfs: 1.14.0 -> 1.14.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/bindfs/versions
2019-07-15 10:36:23 +02:00
Edmund Wu
226ddb7a46
bcachefs-tools: 2019-07-11 -> 2019-07-13 2019-07-14 08:57:29 -04:00
Edmund Wu
e7c72be0fc
bcachefs-tools: 2019-05-29 -> 2019-07-11 2019-07-12 08:40:36 -04:00
Frederik Rietdijk
74c24385cb Merge master into staging-next 2019-07-09 15:46:00 +02:00
Charles Duffy
f15d9d5123 squashfsTools: Fix 4k-align patch (regression in 4.4dev)
The 4k-align squashfs patch was broken in the update to squashfs 4.4dev,
such that the patch was no longer actually applied in full (command line
option not even parsed).
2019-07-08 14:01:57 +02:00
Vladimír Čunát
0746c4dbb4
Merge branch 'master' into staging-next
There are several thousand rebuilds from master already.
Hydra nixpkgs: ?compare=1528940
2019-07-06 13:44:40 +02:00
R. RyanTM
ae8dd4ffdf fuse-overlayfs: 0.4 -> 0.4.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/fuse-overlayfs/versions
2019-07-05 23:28:39 +02:00
Frederik Rietdijk
25a77b7210 Merge staging-next into staging 2019-07-03 08:59:42 +02:00
Mario Rodas
17a5d3196c
Merge pull request #63982 from r-ryantm/auto-update/avfs
avfs: 1.0.6 -> 1.1.0
2019-07-02 19:13:52 -05:00
R. RyanTM
a7d9edab85 f3: 7.1 -> 7.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/f3/versions
2019-07-01 05:55:58 -07:00
R. RyanTM
da18457810 avfs: 1.0.6 -> 1.1.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/avfs/versions
2019-06-30 22:57:52 -07:00
Graham Christensen
0daecd2d7a
Merge pull request #63572 from volth/cpan2nix-2019-06-20
buildPerlPackage: name -> (pname, version)
2019-06-28 17:54:30 -04:00
volth
b3cc65f8b9 buildPerlPackage: name -> (pname, version) 2019-06-20 15:56:50 +00:00
Mario Rodas
bc738d6c68
Merge pull request #63297 from r-ryantm/auto-update/mergerfs
mergerfs: 2.27.1 -> 2.28.1
2019-06-20 05:30:48 -05:00
magenbluten
b54b5f9ad8 rocksdb: 5.11.3 -> 6.1.2
- mark osquery as broken
- mark ceph as broken

both osquery and ceph packages are outdated. furthermore, ceph has its
own inline rocksdb source tree which isn't use in the current nixpkg.
this needs to be fixed.
2019-06-19 15:01:27 +02:00
Mario Rodas
28f3c1006c
Merge pull request #63418 from r-ryantm/auto-update/s3backer
s3backer: 1.5.0 -> 1.5.1
2019-06-18 06:02:25 -05:00
R. RyanTM
c7012c70a0 s3backer: 1.5.0 -> 1.5.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/s3backer/versions
2019-06-18 00:01:33 -07:00
R. RyanTM
cd4cc5f8a4 mergerfs: 2.27.1 -> 2.28.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/mergerfs/versions
2019-06-17 01:09:50 -07:00
Franz Pletz
84de36a0c8
darling-dmg: 1.0.4 -> 1.0.4+git20180914 2019-06-17 07:26:01 +02:00
Franz Pletz
9e612cc860
blobfuse: fix build with gcc8 2019-06-17 07:05:55 +02:00
volth
f3282c8d1e treewide: remove unused variables (#63177)
* treewide: remove unused variables

* making ofborg happy
2019-06-16 19:59:05 +00:00
R. RyanTM
22671c7928 btrfs-progs: 5.1 -> 5.1.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/btrfs-progs/versions
2019-06-16 08:31:18 -07:00
Will Dietz
da93c8fb2f fuse-overlayfs: 0.3 -> 0.4 2019-06-15 10:58:48 +02:00
Frederik Rietdijk
7184efb40a Merge master into staging-next 2019-06-12 09:22:07 +02:00
Vladyslav M
f7b41ceef6
android-file-transfer: 3.8 -> 3.9 2019-06-11 19:46:16 +03:00
Renaud
1a006d382f
Merge pull request #62362 from r-ryantm/auto-update/bindfs
bindfs: 1.13.11 -> 1.14.0
2019-06-10 16:00:38 +02:00
Frederik Rietdijk
480cd436fc Merge staging into staging-next 2019-06-09 12:26:34 +02:00
Vladimír Čunát
290695dd28
treewide icu61+ fixes
It's exactly the same issue as in the parent commit.
/cc #60250 (2fe63c8).
2019-06-05 23:16:23 +02:00
Will Dietz
8ef8fd06bd
Merge pull request #62189 from dtzWill/update/e2fsprogs-1.45.2
e2fsprogs: 1.45.1 -> 1.45.2
2019-06-04 01:37:28 -05:00
Vladimír Čunát
c4724fb7bc
Merge branch 'master' into staging-next
Hydra nixpkgs: ?compare=1523028
2019-06-03 10:01:25 +02:00
Jörg Thalheim
b5b1810ea2
mergerfs: 2.26.1 -> 2.27.1 (#62475)
mergerfs: 2.26.1 -> 2.27.1
2019-06-02 12:07:43 +01:00
R. RyanTM
921b6ad8b0 mergerfs: 2.26.1 -> 2.27.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/mergerfs/versions
2019-06-01 23:06:20 -07:00
Mario Rodas
3185e5374d
Merge pull request #62053 from eadwu/bcachefs/update-3
bcachefs: 2019-05-29
2019-06-01 13:56:42 -05:00
Alyssa Ross
062210bdff treewide: update cargoSha256 hashes for cargo-vendor upgrade
A recent upgrade of cargo-vendor changed its output slightly, which
broke all cargoSha256 hashes in nixpkgs.
See https://github.com/NixOS/nixpkgs/issues/60668 for more information.

Since then, a few hashes have been fixed in master by hand, but there
were a lot still to do, so I did all of the ones left over with some
scripts I wrote.

The one hash I wasn’t able to update was habitat's, because it’s
currently broken and the build doesn’t get far enough to produce a
hash anyway.
2019-06-01 15:17:52 +00:00
R. RyanTM
c6a3bcbab4 bindfs: 1.13.11 -> 1.14.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/bindfs/versions
2019-06-01 00:13:49 -07:00
Will Dietz
c70260eea7
e2fsprogs: 1.45.1 -> 1.45.2 2019-05-30 22:41:39 -05:00
Edmund Wu
4ecd28c4c7
bcachefs-tools: 2019-05-08 -> 2019-05-29 2019-05-30 16:25:32 -04:00
Vladimír Čunát
aa440d8786
btrfs-progs: hack to make it build on i686-linux
/cc #61086.  I just wanted to unblock channels quickly.
2019-05-30 09:26:56 +02:00
Will Dietz
5e9efe4e47
moosefs: 3.0.104 -> 3.0.105 2019-05-28 19:10:50 -05:00
Will Dietz
deadc14733 e2fsprogs: fix w/musl, tweak patch 2019-05-28 08:55:24 +02:00
Will Dietz
ffa37749a1 e2fsprogs: 1.45.0 -> 1.45.1 2019-05-28 08:55:24 +02:00
Vladimír Čunát
b4ae841b23
Merge branch 'staging-next' into staging 2019-05-26 09:48:55 +02:00
Yegor Timoshenko
7409ec7e1e
e2fsprogs: fix cross compilation 2019-05-26 10:20:51 +03:00
Frederik Rietdijk
b2ab860db3 Merge master into staging-next 2019-05-25 12:38:00 +02:00
Frederik Rietdijk
6e4e7c5dc6 Merge master into staging-next 2019-05-24 12:39:37 +02:00
Michael Raskin
194d2db3fc
Merge pull request #61794 from r-ryantm/auto-update/btrfs-progs
btrfs-progs: 4.20.2 -> 5.1
2019-05-21 12:14:23 +00:00
R. RyanTM
cfda315f10 btrfs-progs: 4.20.2 -> 5.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/btrfs-progs/versions
2019-05-21 00:54:18 -07:00
Dominik Xaver Hörl
9c46f16eac android-file-transfer: fix hash of version 3.8 2019-05-19 00:19:36 +02:00
Vladyslav M
8857abb3b6
android-file-transfer: 3.7 -> 3.8 2019-05-18 20:18:25 +03:00
Renaud
d669827ec6
Merge pull request #61300 from bignaux/cpcfs
cpcfs: init at 0.85.4
2019-05-18 15:46:42 +02:00
Bignaux Ronan
7b09727d37 cpcfs: init at 0.85.4 2019-05-18 14:41:13 +02:00
Frederik Rietdijk
840e530934 Merge staging into staging-next 2019-05-18 08:17:48 +02:00
Renaud
a468035cc0
Merge pull request #61236 from bignaux/idsk
idsk: unstable-2018-02-11 -> 0.19
2019-05-17 19:49:30 +02:00
Joachim F
bfadef5c13
Merge pull request #61171 from eadwu/bcachefs/update-2
linux_testing_bcachefs,bcachefs-tools: 2019-04-04 -> 2019-05-08
2019-05-17 11:22:15 +00:00
markuskowa
82435a53e9
Merge pull request #58926 from r-ryantm/auto-update/yandex-disk
yandex-disk: 0.1.5.978 -> 0.1.5.1010
2019-05-17 13:14:40 +02:00
Renaud
ffe83327b7
Merge pull request #61334 from r-ryantm/auto-update/mergerfs
mergerfs: 2.25.1 -> 2.26.1
2019-05-16 20:23:33 +02:00
Renaud
42aafcedf4
mergerfs-tools: 20171221 -> 20190411 2019-05-16 19:50:51 +02:00
Renaud
927da26d34
mergerfs: 2.26.0 -> 2.26.1
Changes:
https://github.com/trapexit/mergerfs/releases/tag/2.26.1
2019-05-16 19:28:58 +02:00
Markus Kowalewski
636042d265
yandex-disk: update i386 hash for 0.1.5.1010 2019-05-16 17:57:37 +02:00
Frederik Rietdijk
f0a4305e0a Merge staging-next into staging 2019-05-14 10:24:46 +02:00
R. RyanTM
3561ede7f6 mergerfs: 2.25.1 -> 2.26.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/mergerfs/versions
2019-05-11 20:55:46 -07:00
Bignaux Ronan
5866296ee5 idsk: unstable-2018-02-11 -> 0.19 2019-05-11 22:02:51 +02:00
Edmund Wu
09c7ba4183
bcachefs-tools: 2019-04-04 -> 2019-05-08 2019-05-08 22:05:54 -04:00
Renaud
2fb1b3156f
Merge pull request #60932 from c0bw3b/patches-cleanup
[treewide] delete (some) unused patches
2019-05-07 23:34:04 +02:00
Robin Gloster
5448f6c558
btrfs-progs: fix cross 2019-05-07 18:14:12 +02:00
c0bw3b
9cb260d091 [treewide] delete unused patches 2019-05-04 19:52:24 +02:00
Robert Schütz
56b560942c Merge branch 'master' into staging 2019-05-03 16:01:49 +02:00
Frederik Rietdijk
1979224f15 Merge master into staging-next 2019-05-02 21:38:22 +02:00
Markus Schmidl
3e5a0bea6e ntfs3g: remove obsolete CVE-2017-0358 patch
* ntfs-3g: remove patch as it been fixed  (#60697)

* ntfs3g: fetchpatch is unused
2019-05-02 16:30:58 +02:00
Frederik Rietdijk
3462fe27d9 Merge staging-next into staging 2019-04-30 15:52:19 +02:00
Joachim F
91f2ff1114
Merge pull request #60196 from colemickens/mergerfs
mergerfs: fix for nixos systemd.mounts
2019-04-28 17:26:03 +00:00
Frederik Rietdijk
042a01efbf Merge staging-next into staging 2019-04-27 07:02:02 +02:00
Matthew Bauer
87944c3125
Merge pull request #56744 from matthewbauer/macos-10-12
Update macOS to 10.12
2019-04-26 22:20:03 -04:00
Matthew Bauer
9eb4623ae3 file-rename: don’t run tests on darwin
https://hydra.nixos.org/build/92527786
2019-04-26 21:55:10 -04:00
Matthew Bauer
2522f58b0e e2fsprogs: check if e2scrub_all_cron exists
doesn’t exist on macos
2019-04-26 21:55:07 -04:00
Vladyslav M
e8c2633bc1
linux_testing_bcachefs,bcachefs-tools: 2019-04-04 (#58296)
linux_testing_bcachefs,bcachefs-tools: 2019-04-04
2019-04-26 19:35:10 +03:00
Edmund Wu
b9d110be3a
bcachefs-tools: 2019-03-13 -> 2019-04-04 2019-04-26 09:11:36 -04:00
Luis Hebendanz
827e954c54 rmount: init at 1.0.1 (#60204)
rmount: init at 1.0.1
2019-04-25 12:14:31 -04:00
Cole Mickens
d602b15d81 mergerfs: fix for nixos systemd.mounts 2019-04-24 21:53:39 -07:00
Renaud
f1d6189478
Merge pull request #59452 from r-ryantm/auto-update/bindfs
bindfs: 1.13.10 -> 1.13.11
2019-04-24 21:51:24 +02:00
Daniel Schaefer
bac4d95aa2 treewide: Change URLs to HTTPS
Lots of URLs were HTTP redirect to HTTPS. Changed those and checked them
if there's actual content. Inspired by
https://github.com/NixOS/nixpkgs/issues/60004
2019-04-22 10:19:54 +02:00
worldofpeace
2e60e06d69
Merge pull request #59734 from Infinisil/update/libimobiledevice
Update libimobiledevice packages, fix usbmuxd
2019-04-17 14:09:11 -04:00
Silvan Mosberger
8d5252be82
ifuse: 1.1.3 -> 2018-10-08
Switching to latest master, as there hasn't been a new release in a
while, see https://github.com/libimobiledevice/ifuse/issues/34
2019-04-16 20:00:44 +02:00
R. RyanTM
bea968d33f moosefs: 3.0.103 -> 3.0.104
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/moosefs/versions
2019-04-16 18:48:34 +02:00
R. RyanTM
68c45556ef bindfs: 1.13.10 -> 1.13.11
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/bindfs/versions
2019-04-14 01:54:48 -07:00
Michael Weiss
b5cfba1a36
sshfs: 3.5.1 -> 3.5.2 2019-04-13 11:43:56 +02:00
Frederik Rietdijk
d108b49168 Merge master into staging-next 2019-04-09 16:38:35 +02:00
Matthew Bauer
6eb0e1a2a9
Merge pull request #59069 from delroth/nilfs-utils-cross
nilfs-utils: fix cross-compilation issue caused by AC_FUNC_MALLOC
2019-04-07 17:53:52 -04:00
Pierre Bourdon
c9c0e7c1b0
nilfs-utils: fix cross-compilation issue caused by AC_FUNC_MALLOC 2019-04-06 15:55:50 +02:00
R. RyanTM
ba54c96593 yandex-disk: 0.1.5.978 -> 0.1.5.1010
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/yandex-disk/versions
2019-04-03 04:22:24 -07:00
Vladimír Čunát
2771375d6e
Merge branch 'master' into staging-next
Hydra nixpkgs: ?compare=1512490
2019-04-02 20:56:53 +02:00
John Ericson
4ccb74011f Merge commit '18aa59b0f26fc707e7313f8467e67159e61600c2' from master into staging
There was one conflict in the NixOS manual; I checked that it still
built after resolving it.
2019-04-01 00:40:03 -04:00
R. RyanTM
7e9a941a28 s3fs: 1.84 -> 1.85 (#58090)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/s3fs-fuse/versions
2019-03-24 00:56:43 +01:00
Frederik Rietdijk
b40d752872 Merge master into staging-next 2019-03-23 09:18:41 +01:00
Wael M. Nasreddine
5af0780492
Merge remote-tracking branch 'origin/master' into staging
* origin/master: (693 commits)
  buildGoModule: use go_1_12 instead of go_1_11 (#58103)
  gitAndTools.lab: 0.15.2 -> 0.15.3 (#58091)
  signal-desktop: 1.22.0 -> 1.23.0
  added missing semicolon to documentation
  terminus_font_ttf: 4.46.0 -> 4.47.0
  buildGoModule: remove SSL env vars in favor of cacert in buildInputs (#58071)
  dav1d: init at 0.2.1
  dropbox-cli: 2018.11.28 -> 2019.02.14
  atlassian-confluence: 6.14.1 -> 6.14.2
  maintainers: update email for dywedir
  python.pkgs.hglib: use patch to specify hg path (#57926)
  chkrootkit: 0.52 -> 0.53
  radare2-cutter: 1.7.2 -> 1.8.0
  autorandr: 1.7 -> 1.8
  pythonPackages.pyhepmc: fix build
  llvm-polly/clang-polly: use latest llvm
  apulse: 0.1.11.1 -> 0.1.12, cleanup
  factorio: experimental 0.17.14 → 0.17.16 (#58000)
  sequeler: 0.6.7 -> 0.6.8
  nasc: 0.5.1 -> 0.5.2
  ...
2019-03-21 21:01:25 -07:00
Vladyslav M
d738f0d7d6
Merge pull request #56560 from eadwu/bcachefs/20190228
linux_testing_bcachefs, bcachefs-tools: 2019-03-13
2019-03-15 09:44:10 +02:00
Edmund Wu
f1844ac441
bcachefs-tools: 2019-02-09 -> 2019-03-13 2019-03-14 16:25:23 -04:00
Vladimír Čunát
04066403ae
Merge branch 'master' into staging-next
Lots of rebuilds from master, apparently.
Hydra nixpkgs: ?compare=1509577
2019-03-14 19:54:49 +01:00
Will Dietz
10a84188ff e2fsprogs: use buildPackages.perl to avoid cycle in llvm-based stdenv 2019-03-14 10:44:11 -05:00
Will Dietz
1cb7a3b519
Merge pull request #57229 from dtzWill/update/e2fsprogs-1.45.0
e2fsprogs: 1.44.5 -> 1.45.0
2019-03-13 11:30:13 -05:00
Mitch
aac69819d6 moosefs: init at 3.0.103
* moosefs: init at 3.0.103

* fix email

* fix formatting

* fixes as suggested
2019-03-12 19:41:37 -07:00
Matthew Bauer
37eba81c7b
Merge pull request #56391 from matthewbauer/cmake-treewide
Add more CMake flags
2019-03-11 12:43:46 -04:00
Matthew Bauer
6ed49262f5 treewide: remove BUILD_TESTING flag
This is now set by CMake
2019-03-11 10:11:28 -04:00
Pascal Bach
260f0e0c5c bonnie: fix bon_csv2txt utility
The bon_csv2txt utility is a perl script. By default it is looking forbonnie: fix bon_csv2txt utility

The bon_csv2txt utility is a perl script. By default it is looking for
perl in /usr/bin/perl which doesn't work on nixos.

This changes patches the perl interpreter correctly. But this comes as at a cost of
closure size increase from 34'006'536 bytes to  90'289'456 bytes as perl is now a dependency.

An alterantive would be to patch the file to use /usr/bin/env perl and just rely on a perl interpreter
being present in PATH.

perl in /usr/bin/perl which doesn't work on nixos.

This changes patches the perl interpreter correctly. But this comes as at a cost of
closure size increase as perl is now a dependency.

An alterantive would be to patch the file to use /usr/bin/env perl and just rely on a perl interpreter
being present in PATH.
2019-03-10 10:29:53 +01:00
Pascal Bach
d039887386 bonnie: 1.97.3 -> 1.98
Version is already available in debian testing.
2019-03-10 10:29:51 +01:00
Will Dietz
8add9b7c21 e2fsprogs: enable tests (previously explicitly disabled) 2019-03-10 04:08:57 -05:00
Will Dietz
b531c19806 e2fsprogs: 1.44.5 -> 1.45.0
Changes:
* https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git/tree/doc/RelNotes/v1.44.6.txt?h=v1.44.6
* https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git/tree/doc/RelNotes/v1.45.0.txt?h=v1.45.0

Also:
* remove 'hack' for installing pc files
* fixup location of `e2scrub_all_cron` to avoid reference cycle in
  outputs, promote to $bin/bin for now.
2019-03-10 03:58:56 -05:00
Vladimír Čunát
bf47162c26
Merge branch 'master' into staging-next
Hydra nixpkgs: ?compare=1508887
2019-03-10 08:04:21 +01:00
Pascal Wittmann
bbfd2be8ed
mhddfs: fix build (see #53716) 2019-03-09 17:14:42 +01:00
Peter Simons
67cc7a8254 davfs2: update to version 1.5.5 2019-03-05 12:17:28 +01:00
Frederik Rietdijk
5d7ab31949 Merge master into staging-next 2019-03-05 08:32:52 +01:00
Josef Kemetmüller
b7c146c08e smbnetfs: Fix build against attr>=2.4.48
The xattr.h header was removed from libattr in v2.4.48 but added to glibc in 2.27.
The location moved from attr/xattr.h to sys/xattr.h.
2019-03-04 21:30:59 +01:00
Frederik Rietdijk
35e73c9dd5 Merge staging into staging-next 2019-03-03 09:35:42 +01:00
R. RyanTM
779a4d66ab btrfs-progs: 4.20.1 -> 4.20.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/btrfs-progs/versions
2019-03-01 14:21:30 -08:00
Matthew Bauer
73061742af Merge remote-tracking branch 'NixOS/master' into staging 2019-02-24 18:54:32 -05:00
Vladimír Čunát
0cf158006b
Merge #52833: netatalk: 3.1.11 -> 3.1.12 (security) 2019-02-24 09:10:31 +01:00
R. RyanTM
5bb8254b9a cryfs: 0.9.9 -> 0.9.10 (#54850)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/cryfs/versions
2019-02-24 00:53:11 +01:00
R. RyanTM
0f493ebada securefs: 0.8.2 -> 0.8.3 (#54671)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/securefs/versions
2019-02-24 00:39:06 +01:00
Florian Friesdorf
fbef5ab82f Remove myself as maintainer from packages
I'm currently not maintaining any packages.
2019-02-22 16:14:13 +01:00
Vladimír Čunát
4ba49d3d6c
Merge #55988: treewide meta.platforms: linux -> unix 2019-02-22 07:59:34 +01:00
Freezeboy
8f87a61de2 Replace platforms.linux with platforms.darwin for expressions that compile on darwin too (too restrictive platforms) 2019-02-18 10:56:58 +01:00
Frederik Rietdijk
6fe10d2779 Merge master into staging-next 2019-02-16 09:29:54 +01:00
Jörg Thalheim
0ac83f0857
Merge pull request #55499 from eadwu/bcachefs/20190209
linux_testing_bcachefs,bcachefs-tools: 20190209
2019-02-14 16:18:05 +00:00
Graham Christensen
a71f344211
Merge pull request #55450 from tilpner/fuse-overlayfs-update
fuse-overlayfs: 0.2 -> 0.3
2019-02-14 06:47:38 -05:00
Edmund Wu
09c194a352
bcachefs-tools: 2019-01-23 -> 2019-02-09 2019-02-09 21:11:29 -05:00
Matthew Bauer
5c09d977c7 Merge remote-tracking branch 'origin/master' into staging 2019-02-09 12:14:06 -05:00
Dmitry Bogatov
b416bb9393
tmsu: install manpage properly into man1 subdirectory 2019-02-08 22:17:14 +00:00
tilpner
b331161df2
fuse-overlayfs: 0.2 -> 0.3 2019-02-08 16:04:03 +01:00
Vladyslav M
8626808c72
Merge pull request #54752 from eadwu/bcachefs/20190123
linux_testing_bcachefs,bcachefs-tools: 20190123
2019-02-04 22:53:38 +02:00
Pascal Wittmann
b3c994185a
disorderfs: 0.5.5 -> 0.5.6 2019-02-03 19:19:41 +01:00
Vladimír Čunát
8ba516664b
Merge branch 'staging-next' into staging 2019-02-01 09:42:53 +01:00
R. RyanTM
bdd502bbd5 btrfs-progs: 4.19.1 -> 4.20.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/btrfs-progs/versions
2019-01-28 16:25:30 -08:00
Edmund Wu
efb1b47f9e
bcachefs-tools: 2019-01-13 -> 2019-01-23 2019-01-27 20:47:24 -05:00
Matthew Bauer
92f0f8dd68 Merge remote-tracking branch 'NixOS/master' into staging 2019-01-27 00:01:13 -05:00
Jörg Thalheim
b5c1deca8a
treewide: remove wkennington as maintainer
He prefers to contribute to his own nixpkgs fork triton.
Since he is still marked as maintainer in many packages
this leaves the wrong impression he still maintains those.
2019-01-26 10:05:32 +00:00
Alyssa Ross
93b0b15533
e2fsprogs: broaden platforms
Builds fine on Darwin.
2019-01-25 15:08:40 +00:00
Pascal Wittmann
8dff3214b7
tmsu: 0.7.1 -> 0.7.4 2019-01-24 22:24:57 +01:00
worldofpeace
3bb9b102e5
Merge pull request #54366 from thefloweringash/gocryptfs-update
gocryptfs: 1.5 -> 1.6.1
2019-01-23 18:31:46 -05:00
Robert Schütz
8c57113e14 python.pkgs.argparse: remove
argparse is part of stdlib in 2.7 and 3.2+
2019-01-22 12:43:07 +01:00
Andrew Childs
28b45f6e65 gocryptfs: 1.5 -> 1.6.1 2019-01-20 19:10:14 +09:00
Will Dietz
c6c38b61a8 bcachefs-tools: 2018-10-12 -> 2019-01-13 (fix w/attr bump, touchups) 2019-01-13 20:45:01 -06:00
Vladimír Čunát
287144e342
Merge branch 'master' into staging-next 2019-01-10 13:07:21 +01:00
Orivej Desh
654f3c467c go-mtpfs: 20150917 -> 2018-02-09 2019-01-09 18:46:41 +00:00
Matthew Bauer
d2e74263ac
Merge pull request #53072 from furrycatherder/fuse-overlayfs
fuse-overlayfs: init at 0.2
2019-01-07 12:41:21 -06:00
Matthew Bauer
7b207060f1
Merge pull request #52965 from danbst/squashfs-zstd
squashfs: 4.4dev -> 4.4dev-20180612
2019-01-06 22:37:37 -06:00
Piotr Bogdan
19061fb79e svnfs: link with libsvn_subr-1 explicitly 2019-01-04 21:44:21 +00:00
Frederik Rietdijk
19905c4c9a Merge staging-next into staging 2018-12-31 14:21:42 +01:00
Frederik Rietdijk
070290bda7 Merge master into staging-next 2018-12-31 12:00:36 +01:00
Will Dietz
8cd0dd21ba e2fsprogs: update glibcism (musl) patch, fix 2018-12-30 22:49:49 -06:00
Sean Haugh
f1f9543768 fuse-overlayfs: init at 0.2 2018-12-30 06:44:33 -06:00
R. RyanTM
614e10a686 e2fsprogs: 1.44.4 -> 1.44.5 (#52899)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/e2fsprogs/versions
2018-12-29 20:40:36 +01:00
Frederik Rietdijk
10afccf145 Merge staging-next into staging 2018-12-27 18:11:34 +01:00
danbst
2aafeedd15 squashfs: 4.4dev -> 4.4dev-20180612
This squashfstools release finally has `zstd` support.
2018-12-27 15:13:48 +02:00
R. RyanTM
b32c357ea9 netatalk: 3.1.11 -> 3.1.12
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/netatalk/versions
2018-12-25 05:46:49 -08:00
R. RyanTM
090bc5b85e mtools: 4.0.22 -> 4.0.23
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/mtools/versions
2018-12-25 02:40:06 -08:00
Jan Tojnar
ef935fa101
Merge branch 'master' into staging 2018-12-24 15:02:29 +01:00
Jan Tojnar
9086af1a77
Merge pull request #52702 from jtojnar/boo-destdir
Boo destdir
2018-12-22 23:02:23 +01:00
Jan Tojnar
8d42600921
duperemove: Do not abuse DESTDIR 2018-12-22 22:33:33 +01:00
Michael Weiss
bacc8e6a54 sshfs: 3.5.0 -> 3.5.1 2018-12-22 17:56:42 +01:00
volth
fed7914539
Merge branch 'staging' into make-perl-pathd 2018-12-18 17:13:27 +00:00
markuskowa
adec549df5
Merge pull request #52186 from r-ryantm/auto-update/mergerfs
mergerfs: 2.24.2 -> 2.25.1
2018-12-16 20:01:42 +01:00
R. RyanTM
c5c2924e92 duperemove: 0.11 -> 0.11.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/duperemove/versions
2018-12-16 17:26:55 +01:00
R. RyanTM
60b6c93f51 mergerfs: 2.24.2 -> 2.25.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/mergerfs/versions
2018-12-15 00:25:19 -08:00
volth
bb9557eb7c lib.makePerlPath -> perlPackages.makePerlPath 2018-12-15 03:50:31 +00:00
Frederik Rietdijk
3e950d584c Merge staging-next into master 2018-12-08 16:29:21 +01:00
Will Dietz
41194fc19c mtools: 4.0.21 -> 4.0.22
https://lists.gnu.org/archive/html/info-gnu/2018-12/msg00000.html
2018-12-07 21:55:00 -06:00
Frederik Rietdijk
5f554279ec Merge master into staging-next 2018-12-07 15:22:35 +01:00
Spencer Janssen
67aa6cd877 btrfs-progs: 4.19 -> 4.19.1
Fixes build of snapper
2018-12-06 15:14:28 -06:00
Frederik Rietdijk
a510aa2672 Merge master into staging-next 2018-12-03 12:18:43 +01:00
Jörg Thalheim
713f5e270b
Revert "btrfs-progs: fix on cross compilation"
This reverts commit 820927cb2c.

Broke the native build: 820927cb2c (commitcomment-31529024)
2018-12-02 23:30:27 +00:00
Matthew Bauer
973781444a Merge branch 'darwin-fixes2' 2018-12-02 14:15:05 -06:00
Matthew Bauer
820927cb2c btrfs-progs: fix on cross compilation
Fixes #50925

(cherry picked from commit 04978d152e8e8e0c2f82cbb8c2addc4ecc93c79c)
2018-12-02 14:12:42 -06:00
Silvan Mosberger
4afae70e2b
Merge pull request #48423 from charles-dyfis-net/bees
bees: init at 0.6.1; nixos/modules: services.bees init
2018-12-02 18:38:47 +01:00
John Ericson
24270193b7 Merge remote-tracking branch 'upstream/staging' into fix/cross-xfsprogs 2018-12-02 12:32:03 -05:00
c0bw3b
0498ccd076 Treewide: use HTTPS on GNU domains
HTTP -> HTTPS for :
- http://gnu.org/
- http://www.gnu.org/
- http://elpa.gnu.org/
- http://lists.gnu.org/
- http://gcc.gnu.org/
- http://ftp.gnu.org/ (except in fetchurl mirrors)
- http://bugs.gnu.org/
2018-12-02 15:51:59 +01:00
c0bw3b
a04a512f34 Treewide: use HTTPS on NonGNU domains 2018-12-02 15:21:04 +01:00
eburimu
0b695faa07 xfsprogs: fix cross compilation 2018-12-02 00:44:25 -05:00
Ivan Kozik
77255a3cd7 xfsprogs: 4.14.0 -> 4.19.0
xfsprogs started using icu in bff5d1a4e8df8a23957e5739850754991ad2b9c8, part of v4.16.0

xfsprogs-4.15.0-docdir.patch is needed to avoid cyclic references in the outputs.

./glibc-2.27.patch is no longer necessary as it was included in xfsprogs 8041435de7ed028a27ecca64302945ad455c69a6
2018-12-02 02:12:45 +00:00
Jan Tojnar
c5881ec2c9
Merge remote-tracking branch 'upstream/master' into staging 2018-11-30 20:09:45 +01:00
Charles Duffy
7df55477fd
bees: init at 0.6.1
Introduce an extent-layer (as opposed to the existing file-level) deduplication
system for btrfs. This provides a means of finding similarities within
non-identical files, when they contain identical, aligned blocks.
2018-11-29 20:27:44 -06:00
John Ericson
071eba26a4
Merge pull request #51204 from eburimu/fix/cross-f2fs-tools
f2fs-tools: fix cross compilation
2018-11-29 15:26:27 -05:00
eburimu
cfb184f2cb
fix reiserfsprogs cross compilation 2018-11-29 17:52:20 +00:00
eburimu
98a2a5b537
fix jfsutils cross compilation 2018-11-29 10:14:02 +00:00
eburimu
d8e73253a4 f2fs-tools: fix cross compilation 2018-11-29 05:11:57 +03:00
Renaud
6a5fff3741
Merge pull request #51001 from c0bw3b/cleanup/more-https
Treewide: use more HTTPS-enabled sources
2018-11-25 16:22:34 +01:00
markuskowa
3a393eecaf
Merge pull request #50904 from Pneumaticat/lizardfs-update
LizardFS: 3.11.3 -> 3.12.0, add Berkeley DB support
2018-11-25 02:38:57 +01:00
Kevin Liu
34f2931037
lizardfs: enable Berkeley DB support 2018-11-24 19:43:25 -05:00
Kevin Liu
4bbc1a6ce3
lizardfs: 3.11.3 -> 3.12.0 2018-11-24 19:43:03 -05:00
c0bw3b
126f94d808 Treewide: use https for people.redhat.com 2018-11-24 23:56:37 +01:00