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
32 lines
971 B
Nix
32 lines
971 B
Nix
{ lib, stdenv, fetchFromGitHub, spotify, xorg, runtimeShell }:
|
|
stdenv.mkDerivation {
|
|
pname = "spotifywm-unstable";
|
|
version = "2016-11-28";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dasJ";
|
|
repo = "spotifywm";
|
|
rev = "91dd5532ffb7a398d775abe94fe7781904ab406f";
|
|
sha256 = "01z088i83410bpx1vbp7c6cq01r431v55l7340x3izp53lnpp379";
|
|
};
|
|
|
|
buildInputs = [ xorg.libX11 ];
|
|
|
|
propagatedBuildInputs = [ spotify ];
|
|
|
|
installPhase = ''
|
|
echo "#!${runtimeShell}" > spotifywm
|
|
echo "LD_PRELOAD="$out/lib/spotifywm.so" ${spotify}/bin/spotify \$*" >> spotifywm
|
|
install -Dm644 spotifywm.so $out/lib/spotifywm.so
|
|
install -Dm755 spotifywm $out/bin/spotifywm
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/dasJ/spotifywm";
|
|
description = "Wrapper around Spotify that correctly sets class name before opening the window";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ jqueiroz ];
|
|
};
|
|
}
|