summaryrefslogtreecommitdiff
path: root/default.nix
blob: 99e7ecdc9bc1b1e02cce6b92b6f8a028d92e6bba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
with import <nixpkgs> {}; 
with rustPlatform;
{
  rafs1 = buildRustPackage rec {
    name = "rafs-${version}";
    version = "0.1";
    buildInputs = [ fuse pkgconfig glibc ];
    logLevel = "debug";
    src = fetchgit {
      url = "https://git.orbekk.com/git/rafs.git"
      rev = "35f5d3c514b640d3b99c643890bb4a655025994d";
      sha256 = "1i5nr70jdqhfjmpnmcgnsyinh7rd3gaz2ka0adi9x5z0dx1ijg6g";
    };
    depsSha256 = "1i5nr70jdqhfjmpnmcgnsyinh7rd3gaz2ka0adi9x5z0dx1ijg6g";
  };
}