summary refs log tree commit diff
path: root/pkgs/os-specific/linux/btfs
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2019-04-30 15:22:15 -0700
committerRenaud <c0bw3b@users.noreply.github.com>2019-05-01 00:22:15 +0200
commitda627dec9f9284efb1ea164b6764aade6e5de7c9 (patch)
tree5e63effba5a35181805dbb063d4d24f6a1a8c9dd /pkgs/os-specific/linux/btfs
parent9db70b6a2ad49e68893a8039cd2f3fd1446063b2 (diff)
downloadnixpkgs-da627dec9f9284efb1ea164b6764aade6e5de7c9.tar
nixpkgs-da627dec9f9284efb1ea164b6764aade6e5de7c9.tar.gz
nixpkgs-da627dec9f9284efb1ea164b6764aade6e5de7c9.tar.bz2
nixpkgs-da627dec9f9284efb1ea164b6764aade6e5de7c9.tar.lz
nixpkgs-da627dec9f9284efb1ea164b6764aade6e5de7c9.tar.xz
nixpkgs-da627dec9f9284efb1ea164b6764aade6e5de7c9.tar.zst
nixpkgs-da627dec9f9284efb1ea164b6764aade6e5de7c9.zip
btfs: 2.18 -> 2.19 (#60478)
* btfs: 2.18 -> 2.19

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/btfs/versions

* btfs: refactor
Diffstat (limited to 'pkgs/os-specific/linux/btfs')
-rw-r--r--pkgs/os-specific/linux/btfs/default.nix17
1 files changed, 8 insertions, 9 deletions
diff --git a/pkgs/os-specific/linux/btfs/default.nix b/pkgs/os-specific/linux/btfs/default.nix
index 9c2692b037e..27fa40887ed 100644
--- a/pkgs/os-specific/linux/btfs/default.nix
+++ b/pkgs/os-specific/linux/btfs/default.nix
@@ -1,21 +1,20 @@
-{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig,
-  python3, boost, fuse, libtorrentRasterbar, curl }:
+{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
+, python3, boost, fuse, libtorrentRasterbar, curl }:
 
 stdenv.mkDerivation rec {
-  name = "btfs-${version}";
-  version = "2.18";
+  pname = "btfs";
+  version = "2.19";
 
   src = fetchFromGitHub {
     owner  = "johang";
-    repo   = "btfs";
+    repo   = pname;
     rev    = "v${version}";
-    sha256 = "1cn21bxx43iqvac6scmwhkw0bql092sl48r6qfidbmhbw30xl5yf";
+    sha256 = "1b58zqha2hpnk4ysp9870wd9pkyy6l106ghp0z0x655q70npj0wn";
   };
 
-  nativeBuildInputs = [ pkgconfig ];
+  nativeBuildInputs = [ autoreconfHook pkgconfig ];
   buildInputs = [
-    boost autoreconfHook
-    fuse libtorrentRasterbar curl
+    boost fuse libtorrentRasterbar curl
   ];
 
   preInstall = ''