summary refs log tree commit diff
path: root/pkgs/tools/filesystems/supertag
diff options
context:
space:
mode:
authorAlvar Penning <post@0x21.biz>2021-04-04 14:48:10 +0200
committerAlvar Penning <post@0x21.biz>2021-04-04 23:05:09 +0200
commitea44189aaa163f5522a47aa57f999c22bc6d2897 (patch)
tree1b10d9367a2f6f44a445f9106f73e61511fc2af3 /pkgs/tools/filesystems/supertag
parent7f46b19d767b9e085c4ee656ed2ee3f25e35e0af (diff)
supertag: init at 0.1.4
Supertag is a tag-based filesystem, written in Rust, for Linux and
MacOS. Merging will close #116279.
Diffstat (limited to 'pkgs/tools/filesystems/supertag')
-rw-r--r--pkgs/tools/filesystems/supertag/default.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/pkgs/tools/filesystems/supertag/default.nix b/pkgs/tools/filesystems/supertag/default.nix
new file mode 100644
index 0000000000000..3602f8e31f94c
--- /dev/null
+++ b/pkgs/tools/filesystems/supertag/default.nix
@@ -0,0 +1,41 @@
+{ lib, rustPlatform, fetchFromGitHub
+, clang, llvmPackages, pkg-config
+, dbus, fuse, sqlite
+}:
+
+rustPlatform.buildRustPackage rec {
+  pname = "supertag";
+  version = "0.1.4";
+
+  src = fetchFromGitHub {
+    owner = "amoffat";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "0jzm7pn38hlr96n0z8gqfsfdbw48y0nnbsgjdq7hpgwmcgvgqdam";
+  };
+
+  cargoSha256 = "1mzmp1jcxgn2swp52r9y7k09fk0z67i1qafzkkzlfxxd10vfr70v";
+
+  LIBCLANG_PATH = "${llvmPackages.libclang}/lib";
+
+  nativeBuildInputs = [ clang pkg-config ];
+  buildInputs = [ dbus fuse sqlite ];
+
+  # The test are requiring extended permissions.
+  doCheck = false;
+
+  meta = with lib; {
+    description = "A tag-based filesystem";
+    longDescription = ''
+      Supertag is a tag-based filesystem, written in Rust, for Linux and MacOS.
+      It provides a tag-based view of your files by removing the hierarchy
+      constraints typically imposed on files and folders. In other words, it
+      allows you to think about your files not as objects stored in folders, but
+      as objects that can be filtered by folders.
+    '';
+    homepage = "https://github.com/amoffat/supertag";
+    license = licenses.agpl3Plus;
+    platforms = [ "i686-linux" "x86_64-linux" ];
+    maintainers = with maintainers; [ oxzi ];
+  };
+}