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: f395b4ef515c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 883ab83f6b0e
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 17, 2019

  1. pidgin-opensteamworks: git-2018-08-02 -> 1.7

    * pidgin-opensteamworks: git-2018-08-02 -> 1.7 (#72295)
    
    * pidgin-opensteamworks: use sourceRoot
    Shados authored and c0bw3b committed Nov 17, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    dtzWill Will Dietz
    Copy the full SHA
    883ab83 View commit details
Showing with 15 additions and 7 deletions.
  1. +15 −7 pkgs/applications/networking/instant-messengers/pidgin-plugins/pidgin-opensteamworks/default.nix
Original file line number Diff line number Diff line change
@@ -1,23 +1,31 @@
{ stdenv, fetchFromGitHub, pidgin, glib, json-glib, nss, nspr, libgnome-keyring } :
{ stdenv, fetchFromGitHub, pkgconfig, pidgin, glib, json-glib, nss, nspr
, libsecret
} :

stdenv.mkDerivation {
stdenv.mkDerivation rec {
pname = "pidgin-opensteamworks";
version = "unstable-2018-08-02";
version = "1.7";

src = fetchFromGitHub {
owner = "EionRobb";
repo = "pidgin-opensteamworks";
rev = "b16a636d177f4a8862abdfbdb2c0994712ea0cd3";
sha256 = "0qyxfrfzsm43f1gmbg350znwxld1fqr9a9yziqs322bx2vglzgfh";
rev = version;
sha256 = "0zxd45g9ycw5kmm4i0800jnqg1ms2gbqcld6gkyv6n3ac1wxizpj";
};

preConfigure = "cd steam-mobile";
sourceRoot = "source/steam-mobile";

installFlags = [
"PLUGIN_DIR_PURPLE=${placeholder "out"}/lib/purple-2"
"DATA_ROOT_DIR_PURPLE=${placeholder "out"}/share"
];

buildInputs = [ pidgin glib json-glib nss nspr libgnome-keyring ];
nativeBuildInputs = [
pkgconfig
];
buildInputs = [
pidgin glib json-glib nss nspr libsecret
];

meta = with stdenv.lib; {
homepage = https://github.com/EionRobb/pidgin-opensteamworks;