mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 20:53:48 +00:00
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
83 lines
1.5 KiB
Nix
83 lines
1.5 KiB
Nix
{ lib, stdenv
|
|
, rustPlatform
|
|
, fetchFromGitLab
|
|
, fetchpatch
|
|
, meson
|
|
, ninja
|
|
, gettext
|
|
, cargo
|
|
, rustc
|
|
, python3
|
|
, pkgconfig
|
|
, glib
|
|
, libhandy_0
|
|
, gtk3
|
|
, dbus
|
|
, openssl
|
|
, sqlite
|
|
, gst_all_1
|
|
, wrapGAppsHook
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
version = "0.4.8";
|
|
pname = "gnome-podcasts";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.gnome.org";
|
|
owner = "World";
|
|
repo = "podcasts";
|
|
rev = version;
|
|
sha256 = "0y2332zjq7vf1v38wzwz98fs19vpzy9kl7y0xbdzqr303l59hjb1";
|
|
};
|
|
|
|
cargoSha256 = "1jbii9k4bkrivdk1ffr6556q1sgk9j4jbzwnn8vbxmksyl1x328q";
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkgconfig
|
|
gettext
|
|
cargo
|
|
rustc
|
|
python3
|
|
wrapGAppsHook
|
|
glib
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
gtk3
|
|
libhandy_0
|
|
dbus
|
|
openssl
|
|
sqlite
|
|
gst_all_1.gstreamer
|
|
gst_all_1.gst-plugins-base
|
|
gst_all_1.gst-plugins-bad
|
|
gst_all_1.gst-plugins-good
|
|
];
|
|
|
|
# use Meson/Ninja phases
|
|
configurePhase = null;
|
|
buildPhase = null;
|
|
checkPhase = null;
|
|
installPhase = null;
|
|
|
|
# tests require network
|
|
doCheck = false;
|
|
|
|
postPatch = ''
|
|
chmod +x scripts/compile-gschema.py # patchShebangs requires executable file
|
|
patchShebangs scripts/compile-gschema.py scripts/cargo.sh scripts/test.sh
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Listen to your favorite podcasts";
|
|
homepage = "https://wiki.gnome.org/Apps/Podcasts";
|
|
license = licenses.gpl3;
|
|
maintainers = teams.gnome.members;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|