lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 18.03-beta 23 lines 654 B view raw
1{ stdenv, fetchurl, pkgconfig, nix, git }: let 2 version = "4.1.6"; 3in stdenv.mkDerivation { 4 name = "nix-exec-${version}"; 5 6 src = fetchurl { 7 url = "https://github.com/shlevy/nix-exec/releases/download/v${version}/nix-exec-${version}.tar.xz"; 8 sha256 = "0slpsnzzzdkf5d9za7j4kr15jr4mn1k9klfsxibzy47b2bx1vkar"; 9 }; 10 11 nativeBuildInputs = [ pkgconfig ]; 12 buildInputs = [ nix git ]; 13 14 NIX_CFLAGS_COMPILE = "-std=c++1y"; 15 16 meta = { 17 description = "Run programs defined in nix expressions"; 18 homepage = https://github.com/shlevy/nix-exec; 19 license = stdenv.lib.licenses.mit; 20 platforms = nix.meta.platforms; 21 broken = true; 22 }; 23}