lol

nix-exec: bump

Shea Levy aab11d69 4ecacf55

+4 -4
+4 -4
pkgs/development/interpreters/nix-exec/default.nix
··· 1 - { stdenv, fetchurl, pkgconfig, nix }: let 2 - version = "1.1.0"; 1 + { stdenv, fetchurl, pkgconfig, nix, git }: let 2 + version = "2.0.0"; 3 3 in stdenv.mkDerivation { 4 4 name = "nix-exec-${version}"; 5 5 6 6 src = fetchurl { 7 7 url = "https://github.com/shlevy/nix-exec/releases/download/v${version}/nix-exec-${version}.tar.xz"; 8 8 9 - sha256 = "0w1dq2svv1l8x18q5syraf80xpyyrcxbrab51cszc3v4m04b4saa"; 9 + sha256 = "09ik0cvplwdb426vz7wllp86hv9milpz33pqcxdxhnkxcrizldnn"; 10 10 }; 11 11 12 - buildInputs = [ pkgconfig nix ]; 12 + buildInputs = [ pkgconfig nix git ]; 13 13 14 14 meta = { 15 15 description = "Run programs defined in nix expressions";