mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 06:23:36 +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.
60 lines
1.1 KiB
Nix
60 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, makeWrapper
|
|
, libnotify
|
|
, slop
|
|
, ffcast
|
|
, ffmpeg
|
|
, xclip
|
|
, rofi
|
|
, coreutils
|
|
, gnused
|
|
, procps
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rofi-screenshot";
|
|
version = "2023-07-02";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ceuk";
|
|
repo = pname;
|
|
rev = "365cfa51c6c7deb072d98d7bfd68cf4038bf2737";
|
|
hash = "sha256-M1cab+2pOjZ2dElMg0Y0ZrIxRE0VwymVwcElgzFrmVs=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
postFixup = ''
|
|
wrapProgram $out/bin/${pname} \
|
|
--set PATH ${
|
|
lib.makeBinPath [
|
|
libnotify
|
|
slop
|
|
ffcast
|
|
ffmpeg
|
|
xclip
|
|
rofi
|
|
coreutils
|
|
gnused
|
|
procps
|
|
]
|
|
}
|
|
'';
|
|
|
|
installPhase = ''
|
|
install -Dm755 ${pname} $out/bin/${pname}
|
|
'';
|
|
|
|
meta = {
|
|
description =
|
|
"Use rofi to perform various types of screenshots and screen captures";
|
|
mainProgram = "rofi-screenshot";
|
|
homepage = "https://github.com/ceuk/rofi-screenshot";
|
|
maintainers = with lib.maintainers; [ zopieux ];
|
|
platforms = lib.platforms.all;
|
|
license = lib.licenses.wtfpl;
|
|
};
|
|
}
|