-
-
Notifications
You must be signed in to change notification settings - Fork 14.9k
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
[staging] fetchFromGitHub: name source with content intristic to the value #153386
base: staging
Are you sure you want to change the base?
Changes from all commits
123c2f0
2a93112
26c2ceb
82692a6
2a82bd8
ff910e8
e9021db
7646117
ff52402
898f225
c0bd900
280c267
b68b66c
53b9a88
281f28d
4a7e627
d2a60de
b4792f6
ccfbea2
826e411
a78ad03
68e058f
7865091
6542c89
133158f
86ebea6
0f20e99
40d026d
a9b8729
09f3d11
f77a83b
7f93f86
f9f5992
d111c52
e56209b
cfa6be8
1db56c2
b56d77e
a21fff1
8c5582b
556a181
83660f9
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 |
---|---|---|
|
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec { | |
libX11 libXft readline | ||
]; | ||
|
||
patchPhase = ''sed "s@ldconfig.*@@" -i source/Makefile''; | ||
patchPhase = ''sed "s@ldconfig.*@@" -i ${src.name}/Makefile''; | ||
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. The default In my opinion, commands in phases should respect |
||
|
||
preBuild = "cd source"; | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec { | |
]; | ||
|
||
preConfigure = '' | ||
cd ./source/ | ||
cd ./${src.name}/ | ||
''; | ||
|
||
postInstall = '' | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec { | |
]; | ||
|
||
preConfigure = '' | ||
cd ./source/ | ||
cd ./${src.name}/ | ||
''; | ||
|
||
makeFlags = [ | ||
|
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.
Please drop this change.
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.
I'm going to try and factor out all of the package updates to separate PRs, eventually this should just be the fetcher change and sha fixes
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.
I guess I could mark this as draft until then
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.
This is editing a comment that isn't fetcher related at all.
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.
correct, but eventually I'll fix it when pruning the commits :)