summary refs log tree commit diff
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2019-03-20 21:26:22 -0700
committerRyan Mulligan <ryan@ryantm.com>2019-03-20 21:26:22 -0700
commit9769393d52c7cb894f9aee7f5aa1e2155b5c9b28 (patch)
treebc27019da4dcff907b91aeeade90422371878c33
parent9249ab322291c1ddeb6843f228f3e4c7d0a099bb (diff)
downloadnixpkgs-9769393d52c7cb894f9aee7f5aa1e2155b5c9b28.tar
nixpkgs-9769393d52c7cb894f9aee7f5aa1e2155b5c9b28.tar.gz
nixpkgs-9769393d52c7cb894f9aee7f5aa1e2155b5c9b28.tar.bz2
nixpkgs-9769393d52c7cb894f9aee7f5aa1e2155b5c9b28.tar.lz
nixpkgs-9769393d52c7cb894f9aee7f5aa1e2155b5c9b28.tar.xz
nixpkgs-9769393d52c7cb894f9aee7f5aa1e2155b5c9b28.tar.zst
nixpkgs-9769393d52c7cb894f9aee7f5aa1e2155b5c9b28.zip
apulse: 0.1.11.1 -> 0.1.12, cleanup
-rw-r--r--pkgs/misc/apulse/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/misc/apulse/default.nix b/pkgs/misc/apulse/default.nix
index 58e50a50f0f..273e358184d 100644
--- a/pkgs/misc/apulse/default.nix
+++ b/pkgs/misc/apulse/default.nix
@@ -4,13 +4,13 @@
 let oz = x: if x then "1" else "0"; in
 
 stdenv.mkDerivation rec {
-  name = "apulse-${version}";
-  version = "0.1.11.1";
+  pname = "apulse";
+  version = "0.1.12";
 
   src = fetchFromGitHub {
     owner = "i-rinat";
-    repo = "apulse";
-    rev = "602b3a02b4b459d4652a3a0a836fab6f892d4080";
+    repo = pname;
+    rev = "v${version}";
     sha256 = "0yk9vgb4aws8xnkhdhgpxp5c0rri8yq61yxk85j99j8ax806i3r8";
   };
 
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "PulseAudio emulation for ALSA";
-    homepage = https://github.com/i-rinat/apulse;
+    homepage = "https://github.com/i-rinat/apulse";
     license = licenses.mit;
     platforms = platforms.linux;
     maintainers = [ maintainers.jagajaga ];