-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
29 lines (27 loc) · 788 Bytes
/
flake.nix
File metadata and controls
29 lines (27 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
description = "Personal R package (fork): rdrop2";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = {self, nixpkgs }: {
packages.x86_64-linux.default = nixpkgs.legacyPackages.x86_64-linux.rPackages.buildRPackage {
name = "rdrop2";
src = fetchGit {
name = "rdrop2-source";
url = "git+ssh://git@fawkes.io:2222/data/git/git/rdrop2";
ref = "main";
rev = "3e617bea72ed0d53a8d4f738f0efc90ed77f2548";
# sha256 = "sha256-5rLdk4ZNyueWqBC0KzLaZAd0QO2cgtWIJvzHcSjwoUA=";
};
propagatedBuildInputs = with nixpkgs.legacyPackages.x86_64-linux.rPackages; [
digest
dplyr
httr
jsonlite
magrittr
purrr
assertthat
];
};
};
}