about summary refs log tree commit diff
path: root/pkgs/tools/filesystems/unionfs-fuse
AgeCommit message (Collapse)AuthorFilesLines
2024-09-25treewide: replace `stdenv.is` with `stdenv.hostPlatform.is`Artturin1-3/+3
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
2023-11-11treewide: fix redirected and broken URLsAnthony Roussel1-1/+1
Using the script in maintainers/scripts/update-redirected-urls.sh
2022-05-29treewide: pkgs/tools: mark broken for darwinRick van Schijndel1-0/+1
All packages that were failing on x86_64-darwin are marked broken. I'm assuming here that these are also broken on aarch64-darwin.
2021-09-22unionfs-fuse: 2.1 -> 2.2R. RyanTM1-2/+2
2021-03-23fuse: use macfuse-stubs instead on Darwinmidchildan1-3/+3
2021-03-21macfuse-stubs: init at 4.0.4midchildan1-5/+3
replaces osxfuse 3.8.3
2021-03-09unionfs-fuse: enable darwinKonstantin Alekseev1-11/+18
2021-01-11treewide: with stdenv.lib; in meta -> with lib;Profpatsch1-2/+2
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2021-01-01treewide: cmake buildInputs to nativeBuildInputs, minor cleanupsBen Siraphob1-1/+2
2020-05-10unionfs-fuse: 2.0 -> 2.1R. RyanTM1-2/+2
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly1-1/+1
2019-08-15treewide: name -> pname (easy cases) (#66585)volth1-1/+1
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
2017-07-10unionfs-fuse: 1.0 -> 2.0Orivej Desh1-6/+7
2017-03-04unionfs-fuse: Use fetchFromGitHubTuomas Tynkkynen1-4/+6
2015-07-01Unmaintain a bunch of packagesShea Levy1-1/+0
2015-04-16unionfs-fuse: fix shaArseniy Seroka1-1/+1
2015-04-16unionfs-fuse: update 0.26 -> 1.0Arseniy Seroka1-2/+3
2014-06-30Another attempt to eradicate ensureDirEelco Dolstra1-1/+1
See c556a6ea46e71e1907d78b71fab36df30297b3ad.
2014-05-21Don't kill unionfs-fuse during shutdownEelco Dolstra2-0/+22
Killing the daemon backing /nix/store prevents a clean shutdown. See http://www.freedesktop.org/wiki/Software/systemd/RootStorageDaemons/
2013-06-15Add unionfs-fuse and ntfs-3g to the channelRob Vermaas1-0/+1
2013-04-09unionfs: Add mount helper (mount.unionfs-fuse)Rickard Nilsson1-1/+13
This makes it possible to mount unionfs directly with mount or fstab. Example fstab entry: none /mnt/union unionf-fuse allow-other,dirs=/source1=RW,/source2=RW Note, the dirs= option need to be the last option, due to limitations in the mount helper provided by unionfs-fuse. Maybe we should write a better helper ourselves. Also, you need to specify your branches as dirs= option, NOT as the device, since the latest version of libmount always interprets "=" characters in the device name as a tag (like LABEL, UUID etc) and will try to resolve the tag before calling the mount helper. This will of course not succeed and the mount will fail.
2012-12-16Add unionfs-fuse metaShea Levy1-0/+7
2012-12-16Add unionfs-fuseShea Levy1-0/+13