Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7fae12010be5
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c6a1412132b6
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Oct 1, 2019

  1. rund: init at version 1.0.0

    Adding a D Programming Language Compiler Wrapper tool that runs and caches D programs.  This is an alternative to the existing `rdmd` tool.  It's a rewrite that leverages a new compiler feature that allows it to run the compiler once instead of having to run it twice like `rdmd` does.  I decided to create a new tool rather than trying to support both older and new compilers in the same tool.  It also introduces new features like "Source Compiler Directives" which allow D Language source files to contain compiler configuration such as import paths, environment variables, etc.
    marler8997 authored and Lassulus committed Oct 1, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Mic92 Jörg Thalheim
    Copy the full SHA
    c6a1412 View commit details
Showing with 51 additions and 0 deletions.
  1. +49 −0 pkgs/development/tools/rund/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
49 changes: 49 additions & 0 deletions pkgs/development/tools/rund/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{stdenv, lib, fetchFromGitHub, ldc ? null, dcompiler ? ldc }:

assert dcompiler != null;

stdenv.mkDerivation rec {
pname = "rund";
version = "1.0.0";

src = fetchFromGitHub {
owner = "dragon-lang";
repo = pname;
rev = "v${version}";
sha256 = "10x6f1nn294r5qnpacrpcbp348dndz5fv4nz6ih55c61ckpkvgcf";
};

buildInputs = [ dcompiler ];
buildPhase = ''
for candidate in dmd ldmd2 gdmd; do
echo Checking for DCompiler $candidate ...
dc=$(type -P $candidate || echo "")
if [ ! "$dc" == "" ]; then
break
fi
done
if [ "$dc" == "" ]; then
exit "Error: could not find a D compiler"
fi
echo Using DCompiler $candidate
$dc -I=$src/src -i -run $src/make.d build --out $NIX_BUILD_TOP
'';

doCheck = true;
checkPhase = ''
$NIX_BUILD_TOP/rund make.d test
'';

installPhase = ''
mkdir -p $out/bin
mv $NIX_BUILD_TOP/rund $out/bin
'';

meta = with stdenv.lib; {
description = "A compiler-wrapper that runs and caches D programs";
homepage = https://github.com/dragon-lang/rund;
license = lib.licenses.boost;
maintainers = with maintainers; [ jonathanmarler ];
platforms = stdenv.lib.platforms.unix;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -5943,6 +5943,8 @@ in

runningx = callPackage ../tools/X11/runningx { };

rund = callPackage ../development/tools/rund { };

runzip = callPackage ../tools/archivers/runzip { };

rw = callPackage ../tools/misc/rw { };