0fc1634255
Mirrors the rust exec-helpers Change-Id: I8fba49525949a8f38ca8c215e2ec7ba9d97d3bf9 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6116 Tested-by: BuildkiteCI Reviewed-by: Profpatsch <mail@profpatsch.de>
55 lines
1.3 KiB
Nix
55 lines
1.3 KiB
Nix
{ depot, pkgs, lib, ... }:
|
|
|
|
let
|
|
exec-helpers = depot.nix.writers.rustSimpleLib
|
|
{
|
|
name = "exec-helpers";
|
|
}
|
|
(builtins.readFile ./exec_helpers.rs);
|
|
|
|
exec-helpers-hs = pkgs.haskellPackages.mkDerivation {
|
|
pname = "exec-helpers";
|
|
version = "0.1.0";
|
|
|
|
src = depot.users.Profpatsch.exactSource ./. [
|
|
./exec-helpers.cabal
|
|
./ExecHelpers.hs
|
|
];
|
|
|
|
libraryHaskellDepends = [
|
|
depot.users.Profpatsch.my-prelude
|
|
];
|
|
|
|
isLibrary = true;
|
|
license = lib.licenses.mit;
|
|
};
|
|
|
|
print-one-env = depot.nix.writers.rustSimple
|
|
{
|
|
name = "print-one-env";
|
|
dependencies = [
|
|
depot.users.Profpatsch.execline.exec-helpers
|
|
];
|
|
} ''
|
|
extern crate exec_helpers;
|
|
use std::os::unix::ffi::OsStrExt;
|
|
use std::io::Write;
|
|
|
|
fn main() {
|
|
let args = exec_helpers::args("print-one-env", 1);
|
|
let valname = std::ffi::OsStr::from_bytes(&args[0]);
|
|
match std::env::var_os(&valname) {
|
|
None => exec_helpers::die_user_error("print-one-env", format!("Env variable `{:?}` is not set", valname)),
|
|
Some(val) => std::io::stdout().write_all(&val.as_bytes()).unwrap()
|
|
}
|
|
}
|
|
'';
|
|
|
|
in
|
|
depot.nix.readTree.drvTargets {
|
|
inherit
|
|
exec-helpers
|
|
exec-helpers-hs
|
|
print-one-env
|
|
;
|
|
}
|