-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
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
libck: init at 0.7.0 #71518
libck: init at 0.7.0 #71518
Conversation
let | ||
version = "0.7.0"; | ||
in stdenv.mkDerivation { | ||
pname = "ck"; | ||
inherit version; |
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 should be:
stdenv.mkDerivation rec {
pname = "ck";
version = "0.7.0";
homepage = "http://concurrencykit.org/"; | ||
platforms = platforms.linux ++ platforms.darwin; | ||
maintainers = with maintainers; [ chessai ]; | ||
inherit version; |
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.
remove the version here
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.
apparently i forgot to submit changes. lol
version = "0.7.0"; | ||
in stdenv.mkDerivation { | ||
pname = "ck"; | ||
inherit version; |
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.
inherit version; | |
version = "0.7.0"; |
|
||
let | ||
version = "0.7.0"; | ||
in stdenv.mkDerivation { |
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.
in stdenv.mkDerivation { | |
in stdenv.mkDerivation rec { |
src = fetchFromGitHub { | ||
owner = "concurrencykit"; | ||
repo = "ck"; | ||
rev = "refs/tags/${version}"; |
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.
rev = "refs/tags/${version}"; | |
rev = version; |
homepage = "http://concurrencykit.org/"; | ||
platforms = platforms.linux ++ platforms.darwin; | ||
maintainers = with maintainers; [ chessai ]; | ||
inherit version; |
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.
remove
inherit version; |
Motivation for this change
Things done
sandbox
innix.conf
on non-NixOS)nix-shell -p nix-review --run "nix-review wip"
./result/bin/
)nix path-info -S
before and after)Notify maintainers
cc @chessai