-
-
Notifications
You must be signed in to change notification settings - Fork 19.4k
transmission_4: init at 4.0.3 #215316
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
Closed
Closed
transmission_4: init at 4.0.3 #215316
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
fb87bf2
transmission: Clean up the expression
jtojnar 418e39a
libutp: unstable-2017-01-02 → unstable-2023-03-05
jtojnar b59c40f
transmission_3: init at 3.00
jtojnar 5390c91
transmission: 3.0.0 → 4.0.2
ajs124 f173861
transmission: fix eval
chvp ac70c89
transmission_3: fix build
ajs124 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| { stdenv, lib, fetchFromGitHub, cmake }: | ||
|
|
||
| stdenv.mkDerivation rec { | ||
| pname = "libutp"; | ||
| version = "unstable-2017-01-02"; | ||
|
|
||
| src = fetchFromGitHub { | ||
| # Use transmission fork from post-3.3-transmission branch | ||
| owner = "transmission"; | ||
| repo = pname; | ||
| rev = "fda9f4b3db97ccb243fcbed2ce280eb4135d705b"; | ||
| sha256 = "CvuZLOBksIl/lS6LaqOIuzNvX3ihlIPjI3Eqwo7YJH0="; | ||
| }; | ||
|
|
||
| nativeBuildInputs = [ cmake ]; | ||
|
|
||
| meta = with lib; { | ||
| description = "uTorrent Transport Protocol library"; | ||
| homepage = "https://github.com/transmission/libutp"; | ||
| license = licenses.mit; | ||
| maintainers = with maintainers; [ emilytrau ]; | ||
| platforms = platforms.unix; | ||
| }; | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,79 @@ | ||
| { stdenv | ||
| , lib | ||
| , fetchFromGitHub | ||
| , fetchurl | ||
| , cmake | ||
| , pkg-config | ||
| , openssl | ||
| , curl | ||
| , libevent | ||
| , inotify-tools | ||
| , zlib | ||
| , pcre | ||
| , libb64 | ||
| , libutp_3_3 | ||
| , miniupnpc | ||
| , dht | ||
| , libnatpmp | ||
| , libiconv | ||
| }: | ||
|
|
||
| stdenv.mkDerivation (finalAttrs: { | ||
| pname = "transmission3"; | ||
| version = "3.00"; | ||
|
|
||
| src = fetchFromGitHub { | ||
| owner = "transmission"; | ||
| repo = "transmission"; | ||
| rev = finalAttrs.version; | ||
| sha256 = "0ccg0km54f700x9p0jsnncnwvfnxfnxf7kcm7pcx1cj0vw78924z"; | ||
| fetchSubmodules = true; | ||
| }; | ||
|
|
||
| patches = [ | ||
| # fix build with openssl 3.0 | ||
| (fetchurl { | ||
| url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/net-p2p/transmission/files/transmission-3.00-openssl-3.patch"; | ||
| hash = "sha256-peVrkGck8AfbC9uYNfv1CIu1alIewpca7A6kRXjVlVs="; | ||
| }) | ||
| ]; | ||
|
|
||
| nativeBuildInputs = [ | ||
| pkg-config | ||
| cmake | ||
| ]; | ||
|
|
||
| buildInputs = [ | ||
| openssl | ||
| curl | ||
| libevent | ||
| zlib | ||
| pcre | ||
| libb64 | ||
| libutp_3_3 | ||
| miniupnpc | ||
| dht | ||
| libnatpmp | ||
| ] ++ lib.optionals stdenv.isLinux [ | ||
| inotify-tools | ||
| ] ++ lib.optionals stdenv.isDarwin [ | ||
| libiconv | ||
| ]; | ||
|
|
||
| cmakeFlags = [ | ||
| "-DENABLE_MAC=OFF" # requires xcodebuild | ||
| "-DENABLE_GTK=OFF" | ||
| "-DENABLE_QT=OFF" | ||
| "-DENABLE_DAEMON=ON" | ||
| "-DENABLE_CLI=OFF" | ||
| "-DINSTALL_LIB=ON" | ||
| ]; | ||
|
|
||
| meta = { | ||
| description = "Old version of libtransmission library for apps that depend on it"; | ||
| homepage = "http://www.transmissionbt.com/"; | ||
| license = lib.licenses.gpl2Plus; # parts are under MIT | ||
| maintainers = with lib.maintainers; [ ]; | ||
|
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. Who wants to? |
||
| platforms = lib.platforms.unix; | ||
| }; | ||
| }) | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Then the license should be both