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

Commits on Nov 21, 2018

  1. fpart: 1.0.0 -> 1.1.0

    Also use `fetchFromGitHub` for fetch so we can use https.
    worldofpeace committed Nov 21, 2018
    Copy the full SHA
    eeec561 View commit details
  2. Merge pull request #50894 from worldofpeace/fpart/1.1.0

    fpart: 1.0.0 -> 1.1.0
    c0bw3b authored Nov 21, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    8f7e407 View commit details
Showing with 9 additions and 5 deletions.
  1. +9 −5 pkgs/tools/misc/fpart/default.nix
14 changes: 9 additions & 5 deletions pkgs/tools/misc/fpart/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
{ stdenv, fetchurl }:
{ stdenv, fetchFromGitHub, autoreconfHook }:

stdenv.mkDerivation rec {
name = "fpart-${version}";
version = "1.0.0";
version = "1.1.0";

src = fetchurl {
url = "http://contribs.martymac.org/fpart/${name}.tar.gz";
sha256 = "1p0ajmry18lcg82znfp8nxs4w3izic775l7df08hywlq4vfa66pg";
src = fetchFromGitHub {
owner = "martymac";
repo = "fpart";
rev = name;
sha256 = "0h3mqc1xj5j2z8s8g3pvvpbjs6x74dj8niyh3p2ymla35kbzskf4";
};

nativeBuildInputs = [ autoreconfHook ];

postInstall = ''
sed "s|^FPART_BIN=.*|FPART_BIN=\"$out/bin/fpart\"|" \
-i "$out/bin/fpsync"