-
-
Notifications
You must be signed in to change notification settings - Fork 20k
ltfs: init at 2.4.8.4-10522 #509379
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
ltfs: init at 2.4.8.4-10522 #509379
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,61 @@ | ||||||||||||||||||||||
| { | ||||||||||||||||||||||
| lib, | ||||||||||||||||||||||
| stdenv, | ||||||||||||||||||||||
| fetchFromGitHub, | ||||||||||||||||||||||
| autoconf, | ||||||||||||||||||||||
| automake, | ||||||||||||||||||||||
| autoreconfHook, | ||||||||||||||||||||||
| fuse, | ||||||||||||||||||||||
| icu78, | ||||||||||||||||||||||
| net-snmp, | ||||||||||||||||||||||
| libuuid, | ||||||||||||||||||||||
| libtool, | ||||||||||||||||||||||
| libxml2, | ||||||||||||||||||||||
| pkg-config, | ||||||||||||||||||||||
| }: | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| stdenv.mkDerivation (finalAttrs: { | ||||||||||||||||||||||
| version = "2.4.8.4-10522"; | ||||||||||||||||||||||
| pname = "ltfs"; | ||||||||||||||||||||||
| strictDeps = true; | ||||||||||||||||||||||
| __structuredAttrs = true; | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| src = fetchFromGitHub { | ||||||||||||||||||||||
| tag = "v${finalAttrs.version}"; | ||||||||||||||||||||||
| fetchSubmodules = true; | ||||||||||||||||||||||
| owner = "LinearTapeFileSystem"; | ||||||||||||||||||||||
| repo = "ltfs"; | ||||||||||||||||||||||
| hash = "sha256-E3qMdZL7UF/phUjayxLGBLpDG9rDXzG5cFECY+tlNlM="; | ||||||||||||||||||||||
|
Comment on lines
+24
to
+28
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||
| }; | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| nativeBuildInputs = [ | ||||||||||||||||||||||
| autoconf | ||||||||||||||||||||||
| automake | ||||||||||||||||||||||
|
Comment on lines
+32
to
+33
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||
| autoreconfHook | ||||||||||||||||||||||
| icu78 | ||||||||||||||||||||||
| libtool | ||||||||||||||||||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Those things are already in autoreconfHook |
||||||||||||||||||||||
| net-snmp | ||||||||||||||||||||||
| pkg-config | ||||||||||||||||||||||
| ]; | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| buildInputs = [ | ||||||||||||||||||||||
| fuse | ||||||||||||||||||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There is currently an ongoing effort to deprecate and remove all use of fuse 2: #526161 There is an upstream PR that adds fuse3 support, maybe you could use it as a patch? |
||||||||||||||||||||||
| icu78 | ||||||||||||||||||||||
| libuuid | ||||||||||||||||||||||
| libxml2 | ||||||||||||||||||||||
| ]; | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| configureFlags = [ | ||||||||||||||||||||||
| "CFLAGS=-Wno-declaration-after-statement" | ||||||||||||||||||||||
| "--enable-fast" | ||||||||||||||||||||||
| ]; | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| meta = { | ||||||||||||||||||||||
| description = "Reference implementation of the open-source tape filesystem standard ltfs"; | ||||||||||||||||||||||
| homepage = "https://github.com/LinearTapeFileSystem/ltfs"; | ||||||||||||||||||||||
| license = lib.licenses.bsd3; | ||||||||||||||||||||||
| platforms = with lib.platforms; linux ++ darwin ++ freebsd ++ netbsd; | ||||||||||||||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Seems like you have all the major players anyway (not a blocking change, but one you should consider).
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||||||||||||||||||||||
| broken = stdenv.hostPlatform.isDarwin; | ||||||||||||||||||||||
| maintainers = with lib.maintainers; [ implr ]; | ||||||||||||||||||||||
| }; | ||||||||||||||||||||||
| }) | ||||||||||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.