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
40 lines
1.2 KiB
Nix
40 lines
1.2 KiB
Nix
{ lib, stdenv, fetchurl, libtool, intltool, pkgconfig, glib
|
|
, gtk2, curl, mpd_clientlib, libsoup, gob2, vala, libunique
|
|
, libSM, libICE, sqlite, hicolor-icon-theme, wrapGAppsHook
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gmpc";
|
|
version = "11.8.16";
|
|
|
|
libmpd = stdenv.mkDerivation {
|
|
name = "libmpd-11.8.17";
|
|
src = fetchurl {
|
|
url = "http://download.sarine.nl/Programs/gmpc/11.8/libmpd-11.8.17.tar.gz";
|
|
sha256 = "10vspwsgr8pwf3qp2bviw6b2l8prgdiswgv7qiqiyr0h1mmk487y";
|
|
};
|
|
patches = [ ./libmpd-11.8.17-remove-strndup.patch ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ glib ];
|
|
};
|
|
|
|
src = fetchurl {
|
|
url = "http://download.sarine.nl/Programs/gmpc/11.8/gmpc-11.8.16.tar.gz";
|
|
sha256 = "0b3bnxf98i5lhjyljvgxgx9xmb6p46cn3a9cccrng14nagri9556";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig libtool intltool gob2 vala wrapGAppsHook ];
|
|
buildInputs = [
|
|
glib gtk2 curl mpd_clientlib libsoup
|
|
libunique libmpd libSM libICE sqlite hicolor-icon-theme
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gmpclient.org";
|
|
description = "A GTK2 frontend for Music Player Daemon";
|
|
license = licenses.gpl2;
|
|
maintainers = [];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|