ntfs2btrfs: init at 20240115

This commit is contained in:
j1nxie 2024-03-19 17:59:21 +07:00
parent b3d4e19a08
commit 762fa71dce
No known key found for this signature in database
1 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ lib, stdenv, fetchFromGitHub, cmake, fmt, lzo, pkg-config, zlib, zstd }:
stdenv.mkDerivation rec {
pname = "ntfs2btrfs";
version = "20240115";
src = fetchFromGitHub {
owner = "maharmstone";
repo = "ntfs2btrfs";
rev = "refs/tags/${version}";
hash = "sha256-sZ8AWREe2jasy3hqLTjaLcOMCNsrDjz2eIuknA2TsEs=";
};
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ fmt lzo zlib zstd ];
meta = {
description = "A CLI tool which does in-place conversion of Microsoft's NTFS filesystem to the open-source filesystem Btrfs";
homepage = "https://github.com/maharmstone/ntfs2btrfs";
license = with lib.licenses; [ gpl2Only ];
maintainers = with lib.maintainers; [ j1nxie ];
mainProgram = "ntfs2btrfs";
platforms = lib.platforms.linux;
};
}