mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 06:23:36 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
42 lines
1.2 KiB
Nix
42 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 = "Simple host availability monitor";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.ebzzry ];
|
|
platforms = platforms.unix;
|
|
mainProgram = "pell";
|
|
};
|
|
|
|
dontBuild = true;
|
|
}
|