Skip to content

Commit

Permalink
Update nix-shell files.
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdafu committed Jan 12, 2018
1 parent 1c047f5 commit cbd2fc5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion default-clang.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ let
pkgs = import <nixpkgs> {};
in pkgs.clangStdenv.mkDerivation rec {
name = "neopg-env";
buildInputs = with pkgs; [ pkgconfig llvm cmake gtest clang boost sqlite botan2 zlib bzip2 gnutls libusb doxygen pythonPackages.gcovr libiconv curl ];
buildInputs = with pkgs; [ pkgconfig llvm cmake gtest clang_4.cc boost sqlite botan2 zlib bzip2 gnutls libusb doxygen pythonPackages.gcovr libiconv curl ];
}
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ let
pkgs = import <nixpkgs> {};
in pkgs.stdenv.mkDerivation rec {
name = "neopg-env";
buildInputs = with pkgs; [ pkgconfig cmake gtest gcc boost sqlite botan2 zlib bzip2 gnutls libusb doxygen pythonPackages.gcovr libiconv curl ];
buildInputs = with pkgs; [ pkgconfig cmake gtest gcc boost sqlite botan2 zlib bzip2 gnutls libusb doxygen pythonPackages.gcovr libiconv curl];
}

5 comments on commit cbd2fc5

@Mic92
Copy link

@Mic92 Mic92 commented on cbd2fc5 Jan 18, 2018

Choose a reason for hiding this comment

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

Interested in integrating neopg into nixpkgs?

@lambdafu
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Sure, but my knowledge of nixos packaging is very limited.

@Mic92
Copy link

@Mic92 Mic92 commented on cbd2fc5 Jan 18, 2018

Choose a reason for hiding this comment

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

cmake based software is usually straight forward. You can copy and paste from other examples.
Let me know, if you have any problems or ask questions in IRC on #nixos

@Mic92
Copy link

@Mic92 Mic92 commented on cbd2fc5 Jan 18, 2018

Choose a reason for hiding this comment

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

That examples should cover all use cases, you might have with cmake based software: https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/misc/keepassx/community.nix

@lambdafu
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Tracked in #55

Please sign in to comment.