mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-08 14:03:29 +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.
34 lines
863 B
Nix
34 lines
863 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
, xorg
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "rlaunch";
|
|
version = "1.3.14";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "PonasKovas";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-PyCR/ob947W+6T56y1se74aNy1avJDb2ELyv2aGf1og=";
|
|
};
|
|
|
|
cargoHash = "sha256-/a1SjGDcauOy1vmXvmWBZmag8G+T2au+Z7b0y1Vj3C8=";
|
|
|
|
# The x11_dl crate dlopen()s these libraries, so we have to inject them into rpath.
|
|
postFixup = ''
|
|
patchelf --set-rpath ${lib.makeLibraryPath (with xorg; [ libX11 libXft libXinerama ])} $out/bin/rlaunch
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Lightweight application launcher for X11";
|
|
homepage = "https://github.com/PonasKovas/rlaunch";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ danc86 ];
|
|
mainProgram = "rlaunch";
|
|
};
|
|
}
|