1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-18 19:26:02 +00:00
nixpkgs/pkgs/development/interpreters/nix-exec/default.nix

26 lines
619 B
Nix
Raw Normal View History

2014-09-28 20:24:38 +01:00
{ 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 ];
2014-09-29 01:10:11 +01:00
platforms = nix.meta.platforms;
2014-09-28 20:24:38 +01:00
};
}