mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 06:55:10 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
33 lines
633 B
Nix
33 lines
633 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
cmake
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "flip";
|
|
version = "1.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "NVlabs";
|
|
repo = "flip";
|
|
rev = "8303adb2060d69423d040453995f4ad1a030a1cc";
|
|
hash = "sha256-jSB79qOtnW/cjApIDcLRqGabnzCIwS7saA+aF1TcyV0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Tool for visualizing and communicating the errors in rendered images";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ zmitchell ];
|
|
mainProgram = "flip";
|
|
};
|
|
}
|