nix-exec: bump

This commit is contained in:
Shea Levy 2014-10-24 17:06:54 -04:00
parent 4ecacf55b9
commit aab11d6963

View file

@ -1,15 +1,15 @@
{ stdenv, fetchurl, pkgconfig, nix }: let
version = "1.1.0";
{ stdenv, fetchurl, pkgconfig, nix, git }: let
version = "2.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 = "0w1dq2svv1l8x18q5syraf80xpyyrcxbrab51cszc3v4m04b4saa";
sha256 = "09ik0cvplwdb426vz7wllp86hv9milpz33pqcxdxhnkxcrizldnn";
};
buildInputs = [ pkgconfig nix ];
buildInputs = [ pkgconfig nix git ];
meta = {
description = "Run programs defined in nix expressions";