mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
f8c4a98e8e
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
25 lines
689 B
Nix
25 lines
689 B
Nix
{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook, glib, pcre }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "rdup";
|
|
version = "1.1.15";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "miekg";
|
|
repo = "rdup";
|
|
rev = "d66e4320cd0bbcc83253baddafe87f9e0e83caa6";
|
|
sha256 = "0bzyv6qmnivxnv9nw7lnfn46k0m1dlxcjj53zcva6v8y8084l1iw";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
buildInputs = [ glib pcre ];
|
|
|
|
meta = {
|
|
description = "Only backup program that doesn't make backups";
|
|
homepage = "https://github.com/miekg/rdup";
|
|
license = lib.licenses.gpl3;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [ sternenseemann ];
|
|
};
|
|
}
|