nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 32 lines 636 B view raw
1{ 2 stdenv, 3 lib, 4 fetchFromGitHub, 5 cmake, 6}: 7 8stdenv.mkDerivation { 9 pname = "flip"; 10 version = "1.2"; 11 12 src = fetchFromGitHub { 13 owner = "NVlabs"; 14 repo = "flip"; 15 rev = "8303adb2060d69423d040453995f4ad1a030a1cc"; 16 hash = "sha256-jSB79qOtnW/cjApIDcLRqGabnzCIwS7saA+aF1TcyV0="; 17 }; 18 19 nativeBuildInputs = [ 20 cmake 21 ]; 22 23 enableParallelBuilding = true; 24 25 meta = { 26 description = "Tool for visualizing and communicating the errors in rendered images"; 27 license = lib.licenses.bsd3; 28 platforms = lib.platforms.unix; 29 maintainers = with lib.maintainers; [ zmitchell ]; 30 mainProgram = "flip"; 31 }; 32}