Advertisement
Guest User

Untitled

a guest
Mar 9th, 2019
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. with import <nixpkgs> {}; # bring all of Nixpkgs into scope
  2.  
  3. stdenv.mkDerivation rec {
  4. name = "VCMI";
  5. version = "0.99";
  6.  
  7. src = fetchgit {
  8. url = "https://github.com/vcmi/vcmi";
  9. rev = "83094faf8ecd47145326d68a1547eeb5f3c39705";
  10. sha256 = "1ghx5qf8jya409fpnwfvbn4hrhwk5hgpmxvwgswwdpi4l8fhfa13";
  11. };
  12.  
  13. nativeBuildInputs = [ cmake pkgconfig SDL2 SDL2_image SDL2_mixer SDL2_ttf zlib libav boost minizip libsForQt5.qwt ];
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement