10 lines
227 B
Nix
10 lines
227 B
Nix
{ pkgs }:
|
|
pkgs.stdenv.mkDerivation {
|
|
name = "xdg-terminal-exec";
|
|
builder = "${pkgs.bash}/bin/bash";
|
|
args = [ ./builder.sh ];
|
|
coreutils = pkgs.coreutils;
|
|
src = ./xdg-terminal-exec;
|
|
system = builtins.currentSystem;
|
|
}
|