4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, scsh, sox, libnotify }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pell";
|
|
version = "0.0.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ebzzry";
|
|
repo = pname;
|
|
rev = "f251625ece6bb5517227970287119e7d2dfcea8b";
|
|
sha256 = "0k8m1lv2kyrs8fylxmbgxg3jn65g57frf2bndc82gkr5svwb554a";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
mkdir -p $out/share
|
|
cp pell $out/bin
|
|
cp resources/online.mp3 $out/share
|
|
cp resources/offline.mp3 $out/share
|
|
chmod +x $out/bin/pell
|
|
'';
|
|
|
|
postFixup = ''
|
|
substituteInPlace $out/bin/pell --replace "/usr/bin/env scsh" "${scsh}/bin/scsh"
|
|
substituteInPlace $out/bin/pell --replace "(play " "(${sox}/bin/play "
|
|
substituteInPlace $out/bin/pell --replace "(notify-send " "(${libnotify}/bin/notify-send "
|
|
substituteInPlace $out/bin/pell --replace "/usr/share/pell/online.mp3" "$out/share/online.mp3"
|
|
substituteInPlace $out/bin/pell --replace "/usr/share/pell/offline.mp3" "$out/share/offline.mp3"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/ebzzry/pell";
|
|
description = "A simple host availability monitor";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.ebzzry ];
|
|
platforms = platforms.unix;
|
|
};
|
|
|
|
dontBuild = true;
|
|
}
|