nixpkgs/pkgs/development/tools/just/default.nix
2019-05-08 11:07:03 +08:00

47 lines
1.4 KiB
Nix

{ stdenv, fetchFromGitHub, rustPlatform, coreutils, bash, dash }:
rustPlatform.buildRustPackage rec {
pname = "just";
version = "0.4.3";
src = fetchFromGitHub {
owner = "casey";
repo = pname;
rev = "v${version}";
sha256 = "0zlxnbifmw1l3j4qw4l8d1mxyj0a7qw2fq90ffghf79f9zgrl4g3";
};
cargoSha256 = "0i7qa6qwvql9nv88vg6d7b1bh50xx53phd341fxba4a27kbmalqg";
checkInputs = [ coreutils bash dash ];
preCheck = ''
# USER must not be empty
export USER=just-user
export USERNAME=just-user
sed -i tests/integration.rs \
-e "s@/bin/echo@${coreutils}/bin/echo@g" \
-e "s@#!/usr/bin/env sh@#!${bash}/bin/sh@g" \
-e "s@#!/usr/bin/env cat@#!${coreutils}/bin/cat@g"
sed -i tests/interrupts.rs \
-e "s@/bin/echo@${coreutils}/bin/echo@g" \
-e "s@#!/usr/bin/env sh@#!${bash}/bin/sh@g" \
-e "s@#!/usr/bin/env cat@#!${coreutils}/bin/cat@g"
sed -i src/justfile.rs \
-e "s@/bin/echo@${coreutils}/bin/echo@g" \
-e "s@#!/usr/bin/env sh@#!${bash}/bin/sh@g" \
-e "s@#!/usr/bin/env cat@#!${coreutils}/bin/cat@g"
'';
meta = with stdenv.lib; {
description = "A handy way to save and run project-specific commands";
homepage = https://github.com/casey/just;
license = licenses.cc0;
maintainers = with maintainers; [ xrelkd ];
platforms = platforms.all;
};
}