Skip to content
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

Closed
wants to merge 0 commits into from
Closed

libck: init at 0.7.0 #71518

wants to merge 0 commits into from

Conversation

chessai
Copy link
Member

@chessai chessai commented Oct 21, 2019

Motivation for this change
Things done
  • Tested using sandboxing (nix.useSandbox on NixOS, or option sandbox in nix.conf on non-NixOS)
  • Built on platform(s)
    • NixOS
    • macOS
    • other Linux distributions
  • Tested via one or more NixOS test(s) if existing and applicable for the change (look inside nixos/tests)
  • Tested compilation of all pkgs that depend on this change using nix-shell -p nix-review --run "nix-review wip"
  • Tested execution of all binary files (usually in ./result/bin/)
  • Determined the impact on package closure size (by running nix path-info -S before and after)
  • Ensured that relevant documentation is up to date
  • Fits CONTRIBUTING.md.
Notify maintainers

cc @chessai

Comment on lines 3 to 7
let
version = "0.7.0";
in stdenv.mkDerivation {
pname = "ck";
inherit version;
Copy link
Member

@Lassulus Lassulus Oct 23, 2019

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;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

remove the version here

Copy link
Contributor

@jonringer jonringer left a 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;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
inherit version;
version = "0.7.0";


let
version = "0.7.0";
in stdenv.mkDerivation {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
in stdenv.mkDerivation {
in stdenv.mkDerivation rec {

src = fetchFromGitHub {
owner = "concurrencykit";
repo = "ck";
rev = "refs/tags/${version}";
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
rev = "refs/tags/${version}";
rev = version;

homepage = "http://concurrencykit.org/";
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ chessai ];
inherit version;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

remove

Suggested change
inherit version;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants