Add nix-exec package

This commit is contained in:
Shea Levy 2014-09-28 15:24:38 -04:00
parent 58d838024b
commit d34cd13a31
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ stdenv, fetchurl, pkgconfig, nix }: let
version = "1.0.0";
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 = "0w89ma69iil1ki68zvs1l0ii0d87in64791l3a4yzyv9d3ncl3w6";
};
buildInputs = [ pkgconfig nix ];
meta = {
description = "Run programs defined in nix expressions";
homepage = https://github.com/shlevy/nix-exec;
license = stdenv.lib.licenses.mit;
maintainers = [ stdenv.lib.maintainers.shlevy ];
};
}

View File

@ -3802,6 +3802,10 @@ let
pythonProtobuf = pythonPackages.protobuf;
};
nix-exec = callPackage ../development/interpreters/nix-exec {
nix = nixUnstable;
};
octave = callPackage ../development/interpreters/octave {
fltk = fltk13;
qt = null;