2014-10-24 22:06:54 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, nix, git }: let
|
2015-11-20 14:16:35 +00:00
|
|
|
version = "4.1.3";
|
2014-09-28 20:24:38 +01:00
|
|
|
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";
|
|
|
|
|
2015-11-20 14:16:35 +00:00
|
|
|
sha256 = "0zhydidxj7dvgvszrlzwb0wj4s7xb42kdmn0fv5c7jz3nvnhdykp";
|
2014-09-28 20:24:38 +01:00
|
|
|
};
|
|
|
|
|
2014-10-24 22:06:54 +01:00
|
|
|
buildInputs = [ pkgconfig nix git ];
|
2014-09-28 20:24:38 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Run programs defined in nix expressions";
|
|
|
|
|
|
|
|
homepage = https://github.com/shlevy/nix-exec;
|
|
|
|
|
|
|
|
license = stdenv.lib.licenses.mit;
|
|
|
|
|
2014-09-29 01:10:11 +01:00
|
|
|
platforms = nix.meta.platforms;
|
2014-09-28 20:24:38 +01:00
|
|
|
};
|
|
|
|
}
|