tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
gcdemu: 3.2.3 -> 3.2.5
Alyssa Ross
4 years ago
8a2ec31e
346fd57a
+3
-4
2 changed files
expand all
collapse all
unified
split
pkgs
misc
emulators
cdemu
base.nix
gui.nix
+1
-2
pkgs/misc/emulators/cdemu/base.nix
···
1
1
{ pkgName, version, pkgSha256 }:
2
2
{ lib, stdenv, fetchurl, cmake, pkg-config, buildInputs, drvParams ? {} }:
3
3
let name = "${pkgName}-${version}";
4
4
-
ext = if lib.versionAtLeast version "3.2.5" then ".xz" else ".bz2";
5
4
in stdenv.mkDerivation ({
6
5
inherit name buildInputs;
7
6
src = fetchurl {
8
8
-
url = "mirror://sourceforge/cdemu/${name}.tar${ext}";
7
7
+
url = "mirror://sourceforge/cdemu/${name}.tar.xz";
9
8
sha256 = pkgSha256;
10
9
};
11
10
nativeBuildInputs = [ pkg-config cmake ];
+2
-2
pkgs/misc/emulators/cdemu/gui.nix
···
2
2
, python3Packages, gtk3, glib, libnotify, intltool, gnome, gdk-pixbuf, librsvg }:
3
3
let
4
4
pkg = import ./base.nix {
5
5
-
version = "3.2.3";
5
5
+
version = "3.2.5";
6
6
pkgName = "gcdemu";
7
7
-
pkgSha256 = "19vy1awha8s7cfja3a6npaf3rfy3pl3cbsh4vd609q9jz4v4lyg4";
7
7
+
pkgSha256 = "1nvpbq4mz8caw91q5ny9gf206g9bypavxws9nxyfcanfkc4zfkl4";
8
8
};
9
9
inherit (python3Packages) python pygobject3;
10
10
in callPackage pkg {