about summary refs log tree commit diff
path: root/pkgs/tools/filesystems
diff options
context:
space:
mode:
authorAndrew Marshall <andrew@johnandrewmarshall.com>2024-01-29 08:05:45 -0500
committerAndrew Marshall <andrew@johnandrewmarshall.com>2024-02-01 11:59:19 -0500
commit56087905b4ab65435a0de3afebdc9e901cb14e85 (patch)
tree5d369b56830291415372c9a543749b376d6b85ff /pkgs/tools/filesystems
parent97b17f32362e475016f942bbdfda4a4a72a8a652 (diff)
downloadnixlib-56087905b4ab65435a0de3afebdc9e901cb14e85.tar
nixlib-56087905b4ab65435a0de3afebdc9e901cb14e85.tar.gz
nixlib-56087905b4ab65435a0de3afebdc9e901cb14e85.tar.bz2
nixlib-56087905b4ab65435a0de3afebdc9e901cb14e85.tar.lz
nixlib-56087905b4ab65435a0de3afebdc9e901cb14e85.tar.xz
nixlib-56087905b4ab65435a0de3afebdc9e901cb14e85.tar.zst
nixlib-56087905b4ab65435a0de3afebdc9e901cb14e85.zip
apfs-fuse: fix pname+version, add mainProgram
The “unstable” conventionally is a part of the version, not the pname.
Diffstat (limited to 'pkgs/tools/filesystems')
-rw-r--r--pkgs/tools/filesystems/apfs-fuse/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/filesystems/apfs-fuse/default.nix b/pkgs/tools/filesystems/apfs-fuse/default.nix
index 0beffca1a54e..0fdb8603db44 100644
--- a/pkgs/tools/filesystems/apfs-fuse/default.nix
+++ b/pkgs/tools/filesystems/apfs-fuse/default.nix
@@ -1,8 +1,8 @@
 { lib, stdenv, fetchFromGitHub, fuse, fuse3, bzip2, zlib, attr, cmake }:
 
 stdenv.mkDerivation {
-  pname = "apfs-fuse-unstable";
-  version = "2023-01-04";
+  pname = "apfs-fuse";
+  version = "unstable-2023-01-04";
 
   src = fetchFromGitHub {
     owner  = "sgan81";
@@ -37,8 +37,8 @@ stdenv.mkDerivation {
     homepage    = "https://github.com/sgan81/apfs-fuse";
     description = "FUSE driver for APFS (Apple File System)";
     license     = licenses.gpl2Plus;
+    mainProgram = "apfs-fuse";
     maintainers = with maintainers; [ ealasu ];
     platforms   = platforms.unix;
   };
-
 }