This commit is contained in:
parent
2485a60d62
commit
9965c3846f
3 changed files with 195 additions and 0 deletions
40
pkgs/osc52/default.nix
Normal file
40
pkgs/osc52/default.nix
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
{ lib, coreutils, makeWrapper, stdenvNoCC }:
|
||||
stdenvNoCC.mkDerivation rec {
|
||||
pname = "osc52";
|
||||
version = "0.1.0";
|
||||
|
||||
src = ./osc52;
|
||||
|
||||
buildInputs = [
|
||||
makeWrapper
|
||||
];
|
||||
|
||||
dontUnpack = true;
|
||||
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp $src $out/bin/osc52
|
||||
chmod a+x $out/bin/osc52
|
||||
'';
|
||||
|
||||
wrapperPath = lib.makeBinPath [
|
||||
coreutils
|
||||
];
|
||||
|
||||
fixupPhase = ''
|
||||
patchShebangs $out/bin/osc52
|
||||
wrapProgram $out/bin/osc52 --prefix PATH : "${wrapperPath}"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = ''
|
||||
A script to copy strings using the OSC52 escape sequence
|
||||
'';
|
||||
homepage = "https://gitea.belanyi.fr/ambroisie/nix-config";
|
||||
license = with licenses; [ mit ];
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ ambroisie ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue