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

Commits on Jan 20, 2020

  1. Copy the full SHA
    bb04c6d View commit details
Showing with 7 additions and 5 deletions.
  1. +7 −5 pkgs/development/libraries/audio/raul/default.nix
12 changes: 7 additions & 5 deletions pkgs/development/libraries/audio/raul/default.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
{ stdenv, fetchgit, boost, gtk2, pkgconfig, python, wafHook }:

stdenv.mkDerivation rec {
name = "raul-unstable-${rev}";
rev = "2017-07-23";
pname = "raul";
version = "unstable-2019-12-09";
name = "${pname}-${version}";

src = fetchgit {
url = "http://git.drobilla.net/cgit.cgi/raul.git";
rev = "4db870b2b20b0a608ec0283139056b836c5b1624";
sha256 = "04fajrass3ymr72flx5js5vxc601ccrmx8ny8scp0rw7j0igyjdr";
url = "https://gitlab.com/drobilla/raul.git";
fetchSubmodules = true;
rev = "e87bb398f025912fb989a09f1450b838b251aea1";
sha256 = "1z37jb6ghc13b8nv8a8hcg669gl8vh4ni9djvfgga9vcz8rmcg8l";
};

nativeBuildInputs = [ pkgconfig wafHook ];