fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ lib, stdenv
2, fetchurl
3}:
4
5stdenv.mkDerivation rec {
6 pname = "rankwidth";
7 version = "0.9";
8
9 src = fetchurl {
10 url = "mirror://sageupstream/rw/rw-${version}.tar.gz";
11 sha256 = "sha256-weA1Bv4lzfy0KMBR/Fay0q/7Wwb7o/LOdWYxRmvvtEE=";
12 };
13
14 configureFlags = [
15 "--enable-executable=no" # no igraph dependency
16 ];
17
18 # check phase is empty for now (as of version 0.9)
19 doCheck = true;
20
21 meta = with lib; {
22 description = "Calculates rank-width and rank-decompositions";
23 license = with licenses; [ gpl2Plus ];
24 maintainers = teams.sage.members;
25 platforms = platforms.unix;
26 };
27}