ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
41 lines
960 B
Nix
41 lines
960 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, wayland
|
|
, libxkbcommon
|
|
, fontconfig
|
|
, makeWrapper
|
|
, grim
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "watershot";
|
|
version = "0.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Kirottu";
|
|
repo = "watershot";
|
|
rev = "v${version}";
|
|
hash = "sha256-QX6BxK26kcrg0yKJA7M+Qlr3WwLaykBquI6UK8wVtX4=";
|
|
};
|
|
|
|
cargoHash = "sha256-481E5/mUeeoaZ0N//tRWCyV8/sRRP6VdB06gB1whgzU=";
|
|
|
|
nativeBuildInputs = [ pkg-config wayland makeWrapper ];
|
|
|
|
buildInputs = [ wayland fontconfig libxkbcommon ];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/watershot \
|
|
--prefix PATH : ${lib.makeBinPath [ grim ]}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
platforms = with platforms; linux;
|
|
description = "A simple wayland native screenshot tool";
|
|
mainProgram = "watershot";
|
|
homepage = "https://github.com/Kirottu/watershot";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ lord-valen ];
|
|
};
|
|
}
|