nixpkgs/pkgs/development/interpreters/nix-exec/default.nix

25 lines
665 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, nix, git }: let
2017-01-31 18:02:46 +01:00
version = "4.1.6";
2014-09-28 21:24:38 +02:00
in stdenv.mkDerivation {
2019-08-13 23:52:01 +02:00
pname = "nix-exec";
inherit version;
2014-09-28 21:24:38 +02:00
src = fetchurl {
url = "https://github.com/shlevy/nix-exec/releases/download/v${version}/nix-exec-${version}.tar.xz";
2017-01-31 18:02:46 +01:00
sha256 = "0slpsnzzzdkf5d9za7j4kr15jr4mn1k9klfsxibzy47b2bx1vkar";
2014-09-28 21:24:38 +02:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ nix git ];
2017-03-30 15:48:24 +02:00
NIX_CFLAGS_COMPILE = "-std=c++1y";
2014-09-28 21:24:38 +02:00
meta = {
description = "Run programs defined in nix expressions";
homepage = "https://github.com/shlevy/nix-exec";
2014-09-28 21:24:38 +02:00
license = stdenv.lib.licenses.mit;
2014-09-29 02:10:11 +02:00
platforms = nix.meta.platforms;
broken = true;
2014-09-28 21:24:38 +02:00
};
}