Skip to content

Commit

Permalink
nix-exec: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
globin committed Mar 30, 2017
1 parent b9948fe commit 84db2df
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions pkgs/development/interpreters/nix-exec/default.nix
Original file line number Diff line number Diff line change
@@ -1,23 +1,21 @@
{ stdenv, fetchurl, pkgconfig, nix, git }: let
{ stdenv, fetchurl, pkgconfig, nix, git, gcc6 }: let
version = "4.1.6";
in stdenv.mkDerivation {
name = "nix-exec-${version}";

src = fetchurl {
url = "https://github.com/shlevy/nix-exec/releases/download/v${version}/nix-exec-${version}.tar.xz";

sha256 = "0slpsnzzzdkf5d9za7j4kr15jr4mn1k9klfsxibzy47b2bx1vkar";
};

buildInputs = [ pkgconfig nix git ];
buildInputs = [ pkgconfig nix git gcc6 ];

NIX_CFLAGS_COMPILE = "-std=c++1y";

meta = {
description = "Run programs defined in nix expressions";

homepage = https://github.com/shlevy/nix-exec;

license = stdenv.lib.licenses.mit;

platforms = nix.meta.platforms;
};
}

0 comments on commit 84db2df

Please sign in to comment.