Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 55f4feb618f3
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: bc1a40983f72
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 17, 2019

  1. xzoom: fix version

    davidak authored and Lassulus committed Nov 17, 2019
    Copy the full SHA
    bc1a409 View commit details
Showing with 3 additions and 5 deletions.
  1. +3 −5 pkgs/tools/X11/xzoom/default.nix
8 changes: 3 additions & 5 deletions pkgs/tools/X11/xzoom/default.nix
Original file line number Diff line number Diff line change
@@ -3,19 +3,17 @@
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "xzoom";
major = "0";
minor = "3";
version = "0.3";
patch = "24";
version = "${major}.${minor}.${patch}";

# or fetchFromGitHub(owner,repo,rev) or fetchgit(rev)
src = fetchurl {
url = "http://www.ibiblio.org/pub/linux/libs/X/${pname}-${major}.${minor}.tgz";
url = "http://www.ibiblio.org/pub/linux/libs/X/${pname}-${version}.tgz";
sha256 = "0jzl5py4ny4n4i58lxx2hdwq9zphqf7h3m14spl3079y5mlzssxj";
};
patches = [
(fetchurl {
url = "http://http.debian.net/debian/pool/main/x/xzoom/xzoom_${major}.${minor}-${patch}.diff.gz";
url = "http://http.debian.net/debian/pool/main/x/xzoom/xzoom_${version}-${patch}.diff.gz";
sha256 = "0zhc06whbvaz987bzzzi2bz6h9jp6rv812qs7b71drivvd820qbh";
})
];