nixpkgs/pkgs/by-name/al/alarm-clock-applet/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
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.
2024-11-09 20:04:51 +08:00

62 lines
1.4 KiB
Nix

{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, cmake
, pkg-config
, wrapGAppsHook3
, gst_all_1
, libnotify
, libayatana-appindicator
}:
stdenv.mkDerivation rec {
pname = "alarm-clock-applet";
version = "0.4.1";
src = fetchFromGitHub {
owner = pname;
repo = "alarm-clock";
rev = version;
hash = "sha256-10hkWWEsAUJnGeu35bR5d0RFKd9CKDZI7WGMzmEM3rI=";
};
patches = [
(fetchpatch {
url = "https://github.com/alarm-clock-applet/alarm-clock/commit/6a11003099660dfae0e3d5800f49880d3a26f5ec.patch";
hash = "sha256-NP1PlEw5AFWZgywvppIs2e+5EfMSPbU4Pq2tIfwODrQ=";
})
(fetchpatch {
url = "https://github.com/alarm-clock-applet/alarm-clock/commit/cbcf22fac5b45ab251ade2e7e993f422f33f926e.patch";
hash = "sha256-xKaaNfXsv9Ckwy73r1n93kOWIZ01fU5GDqYSQCch1Kc=";
})
];
nativeBuildInputs = [
cmake
pkg-config
wrapGAppsHook3
];
buildInputs = [
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
libnotify
libayatana-appindicator
];
cmakeFlags = [
# gconf is already deprecated
"-DENABLE_GCONF_MIGRATION=OFF"
];
meta = with lib; {
description = "Fully-featured alarm clock with an indicator";
homepage = "https://alarm-clock-applet.github.io";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ aleksana ];
platforms = platforms.linux;
mainProgram = "alarm-clock-applet";
};
}