mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 11:03:57 +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.
39 lines
963 B
Nix
39 lines
963 B
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "dwmbar";
|
|
version = "0-unstable-2021-12-22";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "thytom";
|
|
repo = "dwmbar";
|
|
rev = "574f5703c558a56bc9c354471543511255423dc7";
|
|
sha256 = "sha256-IrelZpgsxq2dnsjMdh7VC5eKffEGRbDkZmZBD+tROPs=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace dwmbar \
|
|
--replace 'DEFAULT_CONFIG_DIR="/usr/share/dwmbar"' "DEFAULT_CONFIG_DIR=\"$out/share/dwmbar\""
|
|
'';
|
|
|
|
installPhase = ''
|
|
install -d $out/share/dwmbar
|
|
cp -r modules $out/share/dwmbar/
|
|
install -D -t $out/share/dwmbar/ config
|
|
install -D -t $out/share/dwmbar/ bar.sh
|
|
install -Dm755 -t $out/bin/ dwmbar
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/thytom/dwmbar";
|
|
description = "Modular Status Bar for dwm";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ baitinq ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "dwmbar";
|
|
};
|
|
}
|