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

Commits on Aug 3, 2018

  1. apt-offline: 1.3 -> 1.8.1

    Robert Schütz committed Aug 3, 2018
    Copy the full SHA
    c0589af View commit details
  2. Merge pull request #44417 from dotlambda/apt-offline-1.8.1

    apt-offline: 1.3 -> 1.8.1
    Mic92 authored Aug 3, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    7d73fe0 View commit details
Showing with 9 additions and 10 deletions.
  1. +9 −10 pkgs/tools/misc/apt-offline/default.nix
19 changes: 9 additions & 10 deletions pkgs/tools/misc/apt-offline/default.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
{ stdenv, fetchurl, pythonPackages }:
{ stdenv, fetchFromGitHub, python3Packages }:

pythonPackages.buildPythonApplication rec {
version = "1.3";
name = "apt-offline-${version}";
python3Packages.buildPythonApplication rec {
version = "1.8.1";
pname = "apt-offline";

src = fetchurl {
#url = "https://alioth.debian.org/frs/download.php/file/3855/${name}.tar.gz";
# The above URL has two problems: it requires one to be logged in, and it
# uses a CA that curl doesn't know about. Instead, we use this mirror:
url = "http://www.falsifian.org/a/cFi5/${name}.tar.gz";
sha256 = "1sp7ai2abzhbg9y84700qziybphvpzl2nk3mz1d1asivzyjvxlxy";
src = fetchFromGitHub {
owner = "rickysarraf";
repo = pname;
rev = "v${version}";
sha256 = "0k79d1d8jiwg1s684r05njmk1dz8gsb8a9bl4agz7m31snc11j84";
};

doCheck = false;