From 0d18edd645e9197a8b60327cd79b18dbe337e5bb Mon Sep 17 00:00:00 2001 From: Daniel Frank Date: Wed, 4 Nov 2015 19:22:39 +0100 Subject: [PATCH] burp: updates to match the coding conventions --- pkgs/tools/backup/burp/1.3.48.nix | 16 ++++------------ pkgs/tools/backup/burp/default.nix | 16 ++++------------ 2 files changed, 8 insertions(+), 24 deletions(-) diff --git a/pkgs/tools/backup/burp/1.3.48.nix b/pkgs/tools/backup/burp/1.3.48.nix index f680b9826cf2..a3cef656bdbc 100644 --- a/pkgs/tools/backup/burp/1.3.48.nix +++ b/pkgs/tools/backup/burp/1.3.48.nix @@ -1,10 +1,4 @@ -{ stdenv, fetchgit, - acl, - librsync_0_9, - ncurses, - openssl, - zlib -}: +{ stdenv, fetchgit, acl, librsync_0_9, ncurses, openssl, zlib }: stdenv.mkDerivation rec { name = "burp-1.3.48"; @@ -22,11 +16,9 @@ stdenv.mkDerivation rec { # acl relies on attr, which I can't get to build on darwin ++ stdenv.lib.optional (!stdenv.isDarwin) acl; - configureFlags = [ - "--sbindir=$out/bin" - ]; - - #installPhase = ''make install''; + configureFlags = [ + "--sbindir=$out/bin" + ]; meta = with stdenv.lib; { description = "BURP - BackUp and Restore Program"; diff --git a/pkgs/tools/backup/burp/default.nix b/pkgs/tools/backup/burp/default.nix index a81a659eada4..5dea4eba4895 100644 --- a/pkgs/tools/backup/burp/default.nix +++ b/pkgs/tools/backup/burp/default.nix @@ -1,10 +1,4 @@ -{ stdenv, fetchgit, - acl, - librsync, - ncurses, - openssl, - zlib -}: +{ stdenv, fetchgit, acl, librsync, ncurses, openssl, zlib }: stdenv.mkDerivation rec { name = "burp-1.4.40"; @@ -22,11 +16,9 @@ stdenv.mkDerivation rec { # acl relies on attr, which I can't get to build on darwin ++ stdenv.lib.optional (!stdenv.isDarwin) acl; - configureFlags = [ - "--sbindir=$out/bin" - ]; - - #installPhase = ''make install''; + configureFlags = [ + "--sbindir=$out/bin" + ]; meta = with stdenv.lib; { description = "BURP - BackUp and Restore Program";