about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorPatrick Hilhorst <git@hilhorst.be>2018-11-05 17:38:20 +0100
committerPatrick Hilhorst <git@hilhorst.be>2018-11-06 00:17:05 +0100
commitc63d3530ef68c0b757f1c79af73d02516ba6b0d2 (patch)
tree3a2fff5f83599a650ac48ec7eb7fa8f5824a8dd9 /pkgs/applications
parentcef08f162e7dfd82858721c0d9579c36a1dee453 (diff)
downloadnixlib-c63d3530ef68c0b757f1c79af73d02516ba6b0d2.tar
nixlib-c63d3530ef68c0b757f1c79af73d02516ba6b0d2.tar.gz
nixlib-c63d3530ef68c0b757f1c79af73d02516ba6b0d2.tar.bz2
nixlib-c63d3530ef68c0b757f1c79af73d02516ba6b0d2.tar.lz
nixlib-c63d3530ef68c0b757f1c79af73d02516ba6b0d2.tar.xz
nixlib-c63d3530ef68c0b757f1c79af73d02516ba6b0d2.tar.zst
nixlib-c63d3530ef68c0b757f1c79af73d02516ba6b0d2.zip
vcv-rack, opkowa: pname-version fixes
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/audio/vcv-rack/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/audio/vcv-rack/default.nix b/pkgs/applications/audio/vcv-rack/default.nix
index 74e041868dbc..27533084804a 100644
--- a/pkgs/applications/audio/vcv-rack/default.nix
+++ b/pkgs/applications/audio/vcv-rack/default.nix
@@ -3,8 +3,9 @@
 , libzip, rtaudio, rtmidi, speex }:
 
 let
-  glfw-git = glfw.overrideAttrs (oldAttrs: {
-    name = "glfw-git-20180529";
+  glfw-git = glfw.overrideAttrs (oldAttrs: rec {
+    name = "glfw-git-${version}";
+    version = "unstable-2018-05-29";
     src = fetchFromGitHub {
       owner = "glfw";
       repo = "glfw";