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

Commits on Mar 12, 2017

  1. Copy the full SHA
    6723703 View commit details

Commits on Mar 18, 2017

  1. Merge pull request #23811 from ndowens/filter-audio

    filter-audio: 20150624 -> 0.0.1
    7c6f434c authored Mar 18, 2017
    Copy the full SHA
    3d5c322 View commit details
Showing with 8 additions and 6 deletions.
  1. +8 −6 pkgs/development/libraries/filter-audio/default.nix
14 changes: 8 additions & 6 deletions pkgs/development/libraries/filter-audio/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
{ stdenv, fetchgit }:
{ stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
name = "filter-audio-20150624";
name = "filter-audio-${version}";
version = "0.0.1";

src = fetchgit {
url = "https://github.com/irungentoo/filter_audio.git";
rev = "612c5a102550c614e4c8f859e753ea64c0b7250c";
sha256 = "0bmf8dxnr4vb6y36lvlwqd5x68r4cbsd625kbw3pypm5yqp0n5na";
src = fetchFromGitHub {
owner = "irungentoo";
repo ="filter_audio";
rev = "v${version}";
sha256 = "1dv4pram317c1w97cjsv9f6r8cdxhgri7ib0v364z08pk7r2avfn";
};

doCheck = false;