Guest User

Untitled

a guest
Sep 8th, 2020
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. { stdenv, fetchFromGitHub, cmake, boost }:
  2.  
  3. stdenv.mkDerivation rec {
  4. pname = "opm-common";
  5. version = "2020.04";
  6.  
  7. src = fetchFromGitHub {
  8. owner = "OPM";
  9. repo = "opm-common";
  10. rev = "1371b5706dc0e2f7b2ed557e3ca19231c1640e81";
  11. sha256 = "17d3q70ac778m5nj3kcdgk081p42lxrbqbhll44m55jbbnryh4sd";
  12. };
  13.  
  14. nativeBuildInputs = [ cmake boost ];
  15.  
  16. meta = with stdenv.lib; {
  17. description = "Common components for OPM, in particular build system (cmake)";
  18. license = licenses.gpl3;
  19. homepage = "https://www.opm-project.org";
  20. maintainers = with maintainers; [ ezemtsov ];
  21. platforms = platforms.x86_64;
  22. };
  23. }
  24.  
Add Comment
Please, Sign In to add comment