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

Commits on Oct 27, 2020

  1. pspp 1.2.0 -> 1.4.1

    Max Hausch committed Oct 27, 2020
    Copy the full SHA
    8fb9189 View commit details

Commits on Nov 26, 2020

  1. Merge pull request #101807 from cheriimoya/pspp

    pspp 1.2.0 -> 1.4.1
    SuperSandro2000 authored Nov 26, 2020
    Copy the full SHA
    b08b773 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/applications/science/math/pspp/default.nix
8 changes: 4 additions & 4 deletions pkgs/applications/science/math/pspp/default.nix
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{ stdenv, fetchurl, libxml2, readline, zlib, perl, cairo, gtk3, gsl
, pkgconfig, gtksourceview, pango, gettext, dconf
, makeWrapper, gsettings-desktop-schemas, hicolor-icon-theme
, texinfo, ssw
, texinfo, ssw, python3
}:

stdenv.mkDerivation rec {
pname = "pspp";
version = "1.2.0";
version = "1.4.1";

src = fetchurl {
url = "mirror://gnu/pspp/${pname}-${version}.tar.gz";
sha256 = "07pp27zycrb5x927jwaj9r3q7hy915jh51xs85zxby6gfiwl63m5";
sha256 = "0lqrash677b09zxdlxp89z6k02y4i23mbqg83956dwl69wc53dan";
};

nativeBuildInputs = [ pkgconfig texinfo ];
nativeBuildInputs = [ pkgconfig texinfo python3 ];
buildInputs = [ libxml2 readline zlib perl cairo gtk3 gsl
gtksourceview pango gettext
makeWrapper gsettings-desktop-schemas hicolor-icon-theme ssw