nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

mednaffe: 0.8.6 -> 0.8.8

+5 -5
+5 -5
pkgs/misc/emulators/mednaffe/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "mednaffe"; 8 - version = "0.8.6"; 8 + version = "0.8.8"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "AmatCoder"; 12 12 repo = "mednaffe"; 13 - rev = "v${version}"; 14 - sha256 = "13l7gls430dcslpan39k0ymdnib2v6crdsmn6bs9k9g30nfnqi6m"; 13 + rev = "${version}"; 14 + sha256 = "15qk3a3l1phr8bap2ayh3c0vyvw2jwhny1iz1ajq2adyjpm9fhr7"; 15 15 }; 16 16 17 17 nativeBuildInputs = [ autoreconfHook makeWrapper pkgconfig wrapGAppsHook ]; ··· 22 22 23 23 meta = { 24 24 description = "GTK-based frontend for mednafen emulator"; 25 - homepage = https://github.com/AmatCoder/mednaffe; 25 + homepage = "https://github.com/AmatCoder/mednaffe"; 26 26 license = licenses.gpl3Plus; 27 - maintainers = with maintainers; [ sheenobu yegortimoshenko ]; 27 + maintainers = with maintainers; [ sheenobu yegortimoshenko AndersonTorres ]; 28 28 platforms = platforms.linux; 29 29 }; 30 30 }