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: 1a525da707bf
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d86ff8103e22
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 16, 2017

  1. 1
    Copy the full SHA
    011773e View commit details
  2. Merge pull request #31732 from AndersonTorres/upload/libwnck

    libwnck: 3.4.7 -> 3.24.1
    pSub authored Nov 16, 2017
    Copy the full SHA
    d86ff81 View commit details
Showing with 9 additions and 4 deletions.
  1. +9 −4 pkgs/development/libraries/libwnck/3.x.nix
13 changes: 9 additions & 4 deletions pkgs/development/libraries/libwnck/3.x.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
{stdenv, fetchurl, pkgconfig, libX11, gtk3, intltool}:

stdenv.mkDerivation {
name = "libwnck-3.4.7";
stdenv.mkDerivation rec{
name = "libwnck-${version}";
version = "${majorVer}.${minorVer}.${patchVer}";

majorVer = "3";
minorVer = "24";
patchVer = "1";

src = fetchurl {
url = mirror://gnome/sources/libwnck/3.4/libwnck-3.4.7.tar.xz;
sha256 = "d48ac9c7f50c0d563097f63d07bcc83744c7d92a1b4ef65e5faeab32b5ccb723";
url = "mirror://gnome/sources/libwnck/${majorVer}.${minorVer}/${name}.tar.xz";
sha256 = "010zk9zvydggxqnxfml3scml5yxmpjy90irpqcayrzw26lldr9mg";
};

outputs = [ "out" "dev" "devdoc" ];