Skip to content

Commit

Permalink
jimtcl: 0.76 -> 0.77
Browse files Browse the repository at this point in the history
  • Loading branch information
vrthra committed Feb 8, 2017
1 parent 98a6cc0 commit 754fbf5
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions pkgs/development/interpreters/jimtcl/default.nix
Original file line number Diff line number Diff line change
@@ -1,20 +1,25 @@
{ stdenv, fetchFromGitHub, sqlite, readline, asciidoc, SDL, SDL_gfx }:
{ stdenv, lib, fetchFromGitHub, pkgconfig, sqlite, readline, asciidoc, SDL, SDL_gfx }:

stdenv.mkDerivation {
name = "jimtcl-0.76";
let
makeSDLFlags = map (p: "-I${lib.getDev p}/include/SDL");

in stdenv.mkDerivation {
name = "jimtcl-0.77";

src = fetchFromGitHub {
owner = "msteveb";
repo = "jimtcl";
rev = "51f65c6d38fbf86e1f0b036ad336761fd2ab7fa0";
sha256 = "00ldal1w9ysyfmx28xdcaz81vaazr1fqixxb2abk438yfpp1i9hq";
rev = "0.77";
sha256 = "06d9gdgvi6cwd6pjg3xig0kkjqm6kgq3am8yq1xnksyz2n09f0kp";
};

buildInputs = [
nativeBuildInputs = [
sqlite readline asciidoc SDL SDL_gfx
];

NIX_CFLAGS_COMPILE = [ "-I${SDL.dev}/include/SDL" ];
buildInputs = [ pkgconfig ];

NIX_CFLAGS_COMPILE = makeSDLFlags [ SDL SDL_gfx ];

configureFlags = [
"--with-ext=oo"
Expand Down

0 comments on commit 754fbf5

Please sign in to comment.